body {
    background: black;
}

.privacy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.privacy-page .privacy-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    border-bottom: 1px solid #1a1a1a;
}

.privacy-page .hero-content {
    max-width: 800px;
}

.privacy-page .hero-content .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    margin-bottom: 25px;
    opacity: 0;
}

.privacy-page.animate .hero-content .label {
    animation: slideIn 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

.privacy-page .hero-title {
    font-family: "Lexend";
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    opacity: 0;
}

.privacy-page.animate .hero-title {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.15s;
}

.privacy-page .effective-date {
    font-size: 14px;
    color: #666;
    opacity: 0;
}

.privacy-page.animate .effective-date {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

/* Content Section */
.privacy-page .privacy-content {
    padding-top: 80px;
    padding-bottom: 120px;
}

.privacy-page .policy-container {
    max-width: 700px;
    opacity: 0;
}

.privacy-page.animate .policy-container {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* Policy Sections */
.privacy-page .policy-section {
    margin-bottom: 50px;
}

.privacy-page .policy-section:last-child {
    margin-bottom: 0;
}

.privacy-page .policy-section h2 {
    font-family: "Lexend";
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.privacy-page .policy-section p {
    font-family: "Lexend";
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    margin: 0 0 15px 0;
}

.privacy-page .policy-section p:last-child {
    margin-bottom: 0;
}

.privacy-page .policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.privacy-page .policy-section ul li {
    font-family: "Lexend";
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.privacy-page .policy-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
}

.privacy-page .policy-section ul li:last-child {
    margin-bottom: 0;
}

.privacy-page .policy-section strong {
    color: #ccc;
    font-weight: 400;
}

.privacy-page .policy-section a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.privacy-page .policy-section a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease;
}

.privacy-page .policy-section a:hover {
    color: white;
}

.privacy-page .policy-section a:hover::after {
    background: white;
}

/* Contact Info */
.privacy-page .contact-info a {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-page .privacy-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .privacy-page .privacy-content {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .privacy-page .policy-section {
        margin-bottom: 40px;
    }

    .privacy-page .policy-section h2 {
        font-size: 18px;
    }

    .privacy-page .policy-section p,
    .privacy-page .policy-section ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .privacy-page .privacy-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .privacy-page .privacy-content {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .privacy-page .hero-content .label,
    .privacy-page .hero-title,
    .privacy-page .effective-date,
    .privacy-page .policy-container {
        opacity: 1;
        animation: none !important;
    }
}
