/* Privacy Policy Page Styles */

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
}

/* Hero Section */
.privacy-hero-section {
    position: relative;
    margin-top: 60px;
    margin-bottom: 0;
}

.privacy-hero-bg {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.privacy-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.privacy-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.privacy-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.privacy-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Content Section */
.privacy-content-section {
    padding: 60px 0;
    background: #fff;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-last-updated {
    background: #fbeee0;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #ff9800;
}

.privacy-last-updated p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff9800;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.privacy-section li strong {
    color: #222;
    font-weight: 600;
}

.privacy-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.privacy-contact-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.privacy-contact-info a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}

.privacy-contact-info a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Links */
.privacy-section a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content-section {
        padding: 40px 0;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
    }
    
    .privacy-hero-bg {
        height: 250px;
    }
}

/* Footer links styling */
.footer-list a,
.footer-policy-link,
.footer-social-link {
    color: #111 !important;
    transition: color 0.2s;
}

.footer-list a:hover,
.footer-policy-link:hover {
    color: #5f5757 !important;
}
