/* Hero Section */

.hero {
    margin-top: 70px;
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fffe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content .highlight {
    color: #35D1D1;
}

.hero-content p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.7;
}

.last-updated {
    display: inline-block;
    background: rgba(53, 209, 209, 0.1);
    color: #35D1D1;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}


/* Content Section */

.content-section {
    padding: 80px 5%;
    background: white;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}


/* Table of Contents */

.toc {
    position: sticky;
    top: 100px;
}

.toc h3 {
    font-size: 16px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    border-left: 2px solid #e2e8f0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #718096;
    text-decoration: none;
    font-size: 14px;
    padding-left: 16px;
    display: block;
    transition: all 0.3s;
    border-left: 2px solid transparent;
    margin-left: -2px;
}

.toc-list a:hover,
.toc-list a.active {
    color: #35D1D1;
    border-left-color: #35D1D1;
    padding-left: 20px;
}


/* Policy Content */

.policy-content {
    color: #2d3748;
}

.policy-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    scroll-margin-top: 100px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 10px;
}

.policy-content strong {
    color: #1a202c;
    font-weight: 600;
}

.highlight-box {
    background: rgba(53, 209, 209, 0.05);
    border-left: 4px solid #35D1D1;
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
}

.highlight-box strong {
    color: #35D1D1;
}

.info-card {
    background: white;
    border: 2px solid rgba(53, 209, 209, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
}

.info-card h4 {
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    margin-bottom: 0;
    font-size: 15px;
}

.contact-link {
    color: #35D1D1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #2bb8b8;
    text-decoration: underline;
}


/* CTA Section */

.cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 36px;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-white {
    background: white;
    color: #35D1D1;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/* Responsive */

@media (max-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .toc {
        position: static;
        background: rgba(53, 209, 209, 0.05);
        padding: 24px;
        border-radius: 12px;
    }
    .toc-list {
        border-left: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    .toc-list a {
        border-left: none;
        padding: 8px 12px;
        background: white;
        border-radius: 8px;
        border: 2px solid #e2e8f0;
    }
    .toc-list a:hover,
    .toc-list a.active {
        border-color: #35D1D1;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 60px 5% 40px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .content-section {
        padding: 60px 5%;
    }
    .policy-content h2 {
        font-size: 26px;
        margin-top: 36px;
    }
    .policy-content h3 {
        font-size: 20px;
    }
    .policy-content p,
    .policy-content li {
        font-size: 15px;
    }
    .cta h2 {
        font-size: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        font-size: 24px;
    }
    .toc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .policy-content h2 {
        font-size: 24px;
    }
}