* {
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

/* Page background matches site theme */
body {
    background: linear-gradient(135deg, #2a6a9a 0%, #3076aa 50%, #1e5a8a 100%);
    min-height: 100vh;
}

.main {
    width: 900px;
    margin: 30px auto 40px;
    background: #fff;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Page title */
.title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    font-family: times;
    color: #fff;
    background: linear-gradient(90deg, #0088bd, #76bd22);
    padding: 18px 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

/* Last updated / contact headings */
.main h2 {
    width: 100%;
    font-weight: 600;
    font-family: times;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 22px;
    color: #0088bd;
    border-bottom: 2px solid #76bd22;
    padding-bottom: 6px;
}

/* Section headings */
.main h3 {
    font-family: times;
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 17px;
    color: #0088bd;
    font-weight: 700;
}

/* Table of contents block */
.main ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 36px;
    background: #f0f8ff;
    border-left: 4px solid #0088bd;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
}

.main ul h3 {
    color: #0088bd;
    margin-bottom: 8px;
    font-size: 16px;
}

.main li {
    text-indent: 0;
    list-style: none;
}

.main li a {
    color: #0088bd;
    font-size: 14px;
    transition: color 0.2s;
}

.main li a:hover {
    color: #76bd22;
}

/* Sections */
.main section {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #f8fbff;
    border-radius: 8px;
    border: 1px solid #e0eef8;
}

.main section:hover {
    border-color: #0088bd;
    transition: border-color 0.2s;
}

/* Body text */
.main p {
    width: 100%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

/* Inline labels like "In Short:", "Consent:" */
.main p span {
    font-weight: 700;
    font-family: times;
    font-size: 15px;
    display: inline-block;
    margin-right: 6px;
    color: #0088bd;
}

.main strong {
    margin-top: 12px;
    font-family: times;
    font-size: 16px;
    display: block;
    color: #333;
    font-weight: 700;
}

/* Links */
.main a {
    color: #0088bd;
    font-size: 15px;
    text-decoration: underline;
    transition: color 0.2s;
}

.main a:hover {
    color: #76bd22;
}

/* Numbered paragraphs outside sections (Terms page) */
.main > p {
    padding: 0 4px;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
    .main {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 24px 16px;
        box-shadow: none;
    }

    .title {
        font-size: 22px;
        padding: 14px 16px;
        border-radius: 6px;
    }

    .main p {
        width: 100%;
        margin-top: 10px;
    }

    .main h2 {
        width: 100%;
        margin-top: 16px;
    }

    .main h3 {
        width: 100%;
    }

    .main strong {
        width: 100%;
    }

    .main ul {
        width: 100%;
        margin: 12px 0 28px;
    }

    .main ul h3 {
        margin: 0 0 8px;
    }

    .main section {
        padding: 14px 12px;
    }

    section a {
        display: block;
        margin-top: 10px;
    }
}
