/* Privacy Policy Page Styles */
.privacy-page {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(0, 128, 119, 0.05) 0%, rgba(0, 128, 119, 0.1) 100%);
    min-height: 100vh;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.8s ease forwards;
}

.privacy-title {
    font-family: "Tanker-Regular", sans-serif;
    font-size: 2.5rem;
    color: #008077;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.privacy-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

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

.privacy-section h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 1.5rem;
    color: #303a4d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacy-section ul li::before {
    content: "•";
    color: #008077;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Style headers in legal pages */
.privacy-content h2 {
    font-size: 1.25rem;
    color: #008077;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Justify all legal body text */
.privacy-content p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #303A4D;
}

.privacy-section ul li:dir(rtl),
.privacy-section p:dir(rtl),
.privacy-section h2:dir(rtl),
.privacy-title:dir(rtl) {
    font-family: 'Dubai', sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-page {
        padding: 5rem 1rem 3rem;
    }

    .privacy-container {
        padding: 2rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }
}

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

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