/* Privacy Policy Page Styles */

.privacy-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 400;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 30px 0 15px 0;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #c0c0c0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 12px;
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
}

.contact-item {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item strong {
    color: #667eea;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-container {
        padding: 0 15px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .policy-list li {
        font-size: 1rem;
        padding: 10px 0 10px 25px;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Hover effects for better interactivity */
.policy-section:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

/* Print styles */
@media print {
    .privacy-section {
        background: white;
        color: black;
    }
    
    .privacy-content {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .section-title,
    .subsection-title {
        color: black;
    }
    
    .section-text,
    .policy-list li {
        color: #333;
    }
}
