/* Privacy Policy Page Specific Styles */

/* Privacy Hero */
.privacy-hero {
    height: 426px;
    background-color: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.privacy-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    padding: 0 20px;
}

.privacy-hero-text {
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #005678;
}

.privacy-hero-title {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #0D2B37;
    max-width: 788px;
    margin: 0;
}

.privacy-hero-description {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #4E5D63;
    max-width: 600px;
    margin: 8px 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.privacy-hero-image {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
    margin-top: 16px;
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.privacy-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

.privacy-text h1,
.privacy-text h2,
.privacy-text h3,
.privacy-text h4,
.privacy-text h5,
.privacy-text h6 {
    font-family: Poppins;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-text h1 {
    font-size: 32px;
    line-height: 1.2;
}

.privacy-text h2 {
    font-size: 28px;
    line-height: 1.3;
}

.privacy-text h3 {
    font-size: 24px;
    line-height: 1.3;
}

.privacy-text h4 {
    font-size: 20px;
    line-height: 1.4;
}

.privacy-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.privacy-text ul,
.privacy-text ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.privacy-text li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.privacy-text strong {
    font-weight: 600;
    color: var(--text-primary);
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.privacy-text a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        height: auto;
        padding: 60px 0;
    }
    
    .privacy-hero-title {
        font-size: 36px;
    }
    
    .privacy-hero-description {
        font-size: 16px;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-text h1 {
        font-size: 28px;
    }
    
    .privacy-text h2 {
        font-size: 24px;
    }
    
    .privacy-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-title {
        font-size: 28px;
    }
    
    .privacy-hero-description {
        font-size: 14px;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
}