/* 1. Animation Definition (Only once) */
@keyframes appleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Privacy Page Specific Design */
.privacy-main {
    padding-top: 140px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, #eef2f3, #ffffff);
    min-height: 100vh;
}

.privacy-hero {
    text-align: center;
    margin-bottom: 50px;
    animation: appleFadeIn 1s ease-out forwards;
}

.privacy-hero h1 {
    font-size: 3rem;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.privacy-hero p {
    color: #86868b;
    font-size: 1.2rem;
}

.privacy-card-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. Glass Card - The missing properties are added back here */
.privacy-glass-card {
    opacity: 0;
    animation: appleFadeIn 1.2s ease-out 0.3s forwards;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.last-updated {
    font-size: 0.9rem;
    color: #d70707;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. Policy Section Typography */
.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    font-size: 1.5rem;
    color: #1d1d1f !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.policy-section p {
    line-height: 1.6;
    color: #424245 !important;
    font-size: 1.1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.policy-section .icon {
    font-size: 0.8rem;
    background: #d70707;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 15px;
}

.contact-box {
    margin-top: 60px;
    padding: 30px;
    background: #f5f5f7;
    border-radius: 20px;
    text-align: center;
}

/* 5. Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-main { padding-top: 100px; }
    .privacy-hero h1 { font-size: 2.2rem; }
    .privacy-glass-card { padding: 30px; border-radius: 20px; }
    .policy-section h3 { font-size: 1.2rem; }
    .policy-section p { font-size: 1rem; }
}