/* Privacy Policy Specific Styles */

.privacy-main {
    background: #f8f9fa;
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.privacy-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e1e5e9;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.privacy-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.privacy-intro p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.privacy-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e1e5e9;
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 1.5rem 0 1rem 0;
}

.privacy-section h4 {
    font-size: 1.2rem;
    color: #555;
    margin: 1.2rem 0 0.8rem 0;
}

.privacy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #333;
    font-weight: 600;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Back to Home Button */
.back-to-home-btn {
    background: transparent;
    color: #333;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-home-btn:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-intro {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding: 1rem 0;
    }
    
    .privacy-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-intro {
        padding: 1rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
}
