:root {
    --dark: #0F172A;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: #FFFFFF;
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-container {
    max-width: 900px;
    margin: 0;
    padding: 48px 0 80px;
    text-align: left;
    position: relative;
    z-index: 1;
}

nav {
    padding: 20px 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #F1F5F9;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-box img {
    height: 40px;
}

.btn-dark {
    background: var(--dark);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #000;
}

.page-hero {
    background-color: #FFFFFF;
    padding: 60px 20px 24px;
    text-align: center;
}

.page-content {
    background-color: #FFFFFF;
    background-image: url("../assets/images/landing_pages/termsBg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.page-hero h1 .brand {
    color: #1A4C8B;
}

.effective-date {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.terms-body {
    background: transparent;
    padding: 0;
}

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

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.terms-section p {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-section ul {
    margin: 4px 0 12px 22px;
    color: #333333;
    list-style-type: disc;
}

.terms-section li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

footer {
    padding: 60px 0 40px;
    background: #FFFFFF;
    text-align: center;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-link img {
    height: 48px;
    width: auto;
}

.footer-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 28px;
}

.footer-links a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
}

.footer-links a:hover {
    color: #467ABB;
}

.footer-divider {
    border: none;
    border-top: 1px solid #AAAAAA;
    max-width: 900px;
    margin: 0 auto 24px;
}

.copyright {
    color: #94A3B8;
    font-size: 13px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 16px 16px;
    }

    .terms-container {
        padding: 32px 0 60px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }
}