/* Privacy Policy Page Styles */

.page-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: var(--light-color);
    backdrop-filter: blur(6px);
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.privacy-content {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    font-weight: 700;
}

.privacy-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-color);
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-content ul,
.privacy-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content ul li,
.privacy-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 30px;
}

.privacy-content ol {
    list-style-type: lower-alpha;
    padding-left: 30px;
}

.privacy-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.privacy-content a:hover {
    color: var(--primary-color);
}

/* Add a slight hover effect on list items for better UX */
.privacy-content li:hover {
    background-color: rgba(240, 240, 240, 0.5);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Make important sections stand out */
.privacy-content h3 + p {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-content {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 30px;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .privacy-content h2 {
        font-size: 24px;
    }
    
    .privacy-content h3 {
        font-size: 20px;
    }
    
    .privacy-content h4 {
        font-size: 16px;
    }
}

/* Print styles for better printing */
@media print {
    .page-content {
        padding: 20px 0;
        background-color: white;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
    
    .header, .footer, .background-video {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    .page-title, .privacy-content h2, .privacy-content h3, .privacy-content h4 {
        color: black;
    }
}