/* Import base styles */
@import url('style.css');

/* ===========================
   PRIVACY HEADER
   =========================== */
.privacy-header {
    padding: 8rem 3rem 4rem;
    background: var(--accent-gradient);
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.app-icon {
    font-size: 1.5rem;
}

.app-name {
    font-weight: 600;
    color: var(--text-main);
}

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.last-updated {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

/* ===========================
   PRIVACY CONTENT
   =========================== */
.privacy-content {
    padding: 4rem 3rem;
    background: white;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

/* Table of Contents */
.toc {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.toc h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.75rem;
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
}

.toc a:hover {
    color: var(--text-main);
}

/* Main Content */
.privacy-main {
    max-width: 750px;
}

.policy-intro {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-icon {
    font-size: 2.5rem;
}

.trust-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.trust-badge p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-main);
}

.policy-section p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.policy-section strong {
    color: var(--text-main);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.list-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    color: var(--text-main);
    font-size: 0.9rem;
}

.feature-list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.feature-list p {
    margin: 0;
    font-size: 0.95rem;
}

/* Highlight Box */
.highlight-box {
    background: var(--accent-gradient);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.highlight-icon {
    font-size: 3rem;
}

.highlight-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.highlight-content p {
    margin: 0;
    line-height: 1.7;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2rem;
}

.service-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.7;
}

/* Commitment Box */
.commitment-box {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.commitment-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.commitment-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.right-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.right-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.right-card p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* Age Notice */
.age-notice {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.age-icon {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-main);
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.age-notice h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.age-notice p {
    margin: 0;
}

/* Contact Box */
.contact-box {
    background: var(--accent-gradient);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.contact-box p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-main);
    border-radius: 12px;
    margin-top: 4rem;
}

.bottom-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bottom-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Footer Adjustments */
footer {
    margin-top: 0;
    padding: 3rem 3rem 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

.separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* ===========================
   MOBILE RESPONSIVENESS
   =========================== */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .toc {
        position: static;
        order: -1;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }

    .info-grid,
    .service-cards,
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box,
    .age-notice {
        flex-direction: column;
        text-align: center;
    }

    .age-icon {
        margin: 0 auto;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .privacy-header {
        padding: 6rem 1.5rem 3rem;
    }

    .privacy-content {
        padding: 3rem 1.5rem;
    }

    .policy-section {
        margin-bottom: 3rem;
    }
}