* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.announcement-bar {
    background-color: #E88597;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    background-color: white;
    padding: 10px 40px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 40px;
}

.logo img {
    height: 30px;
    display: block;
}

.terms-content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: none;
}

.terms-section {
    margin-bottom: 35px;
}

h2 {
    font-size: 24px;
    color: #000;
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

p {
    font-size: 15px;
    color: #444;
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.list-title {
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 750px;
    text-align: left;
}

.custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .custom-list li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 10px 20px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    .terms-content {
        padding: 40px 15px;
    }
}