.privacy-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
}

.privacy-page-bg {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.privacy-page .container {
    position: relative;
    z-index: 1;
}

.privacy-header {
    text-align: center;
    margin-bottom: 64px;
}

.privacy-meta {
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 16px;
}

.privacy-page-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
}

.privacy-content {
    max-width: 720px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out both;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.15s; }
.privacy-section:nth-child(3) { animation-delay: 0.2s; }
.privacy-section:nth-child(4) { animation-delay: 0.25s; }
.privacy-section:nth-child(5) { animation-delay: 0.3s; }
.privacy-section:nth-child(6) { animation-delay: 0.35s; }
.privacy-section:nth-child(7) { animation-delay: 0.4s; }
.privacy-section:nth-child(8) { animation-delay: 0.45s; }
.privacy-section:nth-child(9) { animation-delay: 0.5s; }
.privacy-section:nth-child(10) { animation-delay: 0.55s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-top: 8px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.privacy-section .lead-text {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.privacy-section.mt-24 {
    margin-top: 24px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 15px;
}

.check-list,
.cross-list {
    margin: 16px 0;
}

.check-list li,
.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
}

.check-list-large li {
    padding: 14px 0;
    font-size: 17px;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 113, 74, 0.15);
    color: var(--coral);
    border-radius: 50%;
    font-size: 16px;
}

.cross-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 96, 86, 0.1);
    color: var(--text-muted);
    border-radius: 50%;
    font-size: 16px;
}

.privacy-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--coral);
    border-left: 3px solid var(--coral);
    padding-left: 20px;
    margin-top: 24px !important;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.storage-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.storage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(244, 113, 74, 0.3);
}

.storage-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    color: var(--coral);
}

.storage-icon svg {
    width: 24px;
    height: 24px;
}

.storage-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.storage-card p {
    font-size: 13px;
    line-height: 1.5;
}

.privacy-section-highlight {
    background: linear-gradient(135deg, rgba(244, 113, 74, 0.05) 0%, rgba(253, 244, 236, 1) 100%);
    border: 1px solid rgba(244, 113, 74, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.service-card {
    display: flex;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    color: var(--coral);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-content h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-content p {
    font-size: 15px;
}

.service-content a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-content a:hover {
    color: var(--coral-dark);
}

.privacy-section-contact {
    text-align: center;
    padding: 48px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--coral);
    margin: 20px 0;
    padding: 16px 28px;
    background: white;
    border-radius: var(--radius-pill);
    border: 2px solid var(--coral);
    transition: var(--transition);
}

.contact-email:hover {
    background: var(--coral);
    color: white;
}

.contact-email .email-icon {
    width: 20px;
    height: 20px;
}

.contact-email .email-icon svg {
    width: 100%;
    height: 100%;
}

.company-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.privacy-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.back-link:hover {
    color: var(--coral);
}

.back-icon {
    width: 20px;
    height: 20px;
}

.back-icon svg {
    width: 100%;
    height: 100%;
}

.nav-link.active {
    color: var(--coral);
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 100px 0 60px;
    }

    .storage-grid {
        grid-template-columns: 1fr;
    }

    .privacy-section-highlight {
        margin-left: 0;
        margin-right: 0;
        padding: 28px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .privacy-section-contact {
        padding: 32px 20px;
    }

    .contact-email {
        font-size: 16px;
        padding: 14px 20px;
    }
}
