/* Privacy Statement Page Enhanced Styles with Mobile Responsiveness */

.privacy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 160px 0 80px 0;
    position: relative;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #e74c3c, #27ae60);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.privacy-content {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    margin-bottom: 40px;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 16px 16px 0 0;
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.privacy-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.privacy-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.privacy-sections {
    display: grid;
    gap: 40px;
}

.privacy-section-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.privacy-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.privacy-section-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.last-updated {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.last-updated h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.last-updated p {
    margin: 0;
    opacity: 0.9;
}

.contact-section {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-section p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    background: white;
    color: #27ae60;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #ecf0f1;
    color: #2ecc71;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .privacy-container {
        padding: 0 15px;
    }
    
    .privacy-content {
        padding: 40px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .privacy-section {
        padding: 140px 0 60px 0;
    }
    
    .privacy-container {
        padding: 0 10px;
    }
    
    .privacy-header {
        margin-bottom: 40px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 0 5px 30px 5px;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    .privacy-section-card {
        padding: 25px;
        margin: 0 5px;
    }
    
    .section-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .privacy-section-card h3 {
        font-size: 1.3rem;
    }
    
    .last-updated,
    .contact-section {
        padding: 25px 20px;
        margin: 25px 5px;
    }
    
    .contact-section h3 {
        font-size: 1.4rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .privacy-section {
        padding: 120px 0 40px 0;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 25px 15px;
        margin: 0 0 25px 0;
    }
    
    .privacy-content h2 {
        font-size: 1.4rem;
        padding-left: 12px;
    }
    
    .privacy-section-card {
        padding: 20px;
        margin: 0;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .last-updated,
    .contact-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .contact-section h3 {
        font-size: 1.3rem;
    }
    
    .contact-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-content,
.privacy-section-card {
    animation: fadeInUp 0.6s ease-out;
}

.privacy-section-card:nth-child(even) {
    animation-delay: 0.1s;
}

.privacy-section-card:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .privacy-section {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    }
    
    .privacy-content,
    .privacy-section-card {
        background: #34495e;
        border-color: #4a5f7a;
        color: #ecf0f1;
    }
    
    .privacy-content h2,
    .privacy-section-card h3 {
        color: #ecf0f1;
    }
    
    .privacy-content p,
    .privacy-section-card p {
        color: #bdc3c7;
    }
}

/* Print styles */
@media print {
    .privacy-section {
        background: none !important;
        padding: 20px 0;
    }
    
    .privacy-content,
    .privacy-section-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .contact-section,
    .last-updated {
        display: none;
    }
}

/* Accessibility improvements */
.privacy-content:focus-within,
.privacy-section-card:focus-within {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.contact-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
