:root {
    --primary: #075763;
    --primary-dark: #064D59;
    --accent: #0BA2B2;
    --text: #284c52;
    --muted: #6f8589;
    --light: #f5fbfc;
    --border: #dcecef;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.7;
}

.terms-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.terms-hero {
    padding: 100px 0 85px;
    background:
        linear-gradient(
            135deg,
            #075763,
            #064D59
        );
    color: white;
}

.terms-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #bcecf0;
}

.terms-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.1;
}

.terms-hero p {
    max-width: 680px;
    margin: 0;
    font-size: 18px;
    color: #d8f0f2;
}

.terms-content {
    padding: 65px 0 90px;
}

.last-updated {
    margin-bottom: 45px;
    color: var(--muted);
    font-size: 14px;
}

.terms-section {
    padding: 0 0 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 25px;
    line-height: 1.3;
}

.terms-section p {
    margin: 0 0 15px;
}

.terms-section ul {
    margin: 12px 0 0;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 8px;
}

.terms-warning {
    padding: 22px 25px;
    border-left: 4px solid var(--accent);
    background: var(--light);
    border-radius: 8px;
}

.terms-warning p {
    margin-top: 8px;
}

.terms-footer-note {
    margin-top: 20px;
    padding: 25px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.terms-footer-note p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 768px) {

    .terms-hero {
        padding: 75px 0 65px;
    }

    .terms-hero h1 {
        font-size: 42px;
    }

    .terms-hero p {
        font-size: 16px;
    }

    .terms-content {
        padding: 45px 0 65px;
    }

    .terms-section h2 {
        font-size: 22px;
    }

}