/* =====================================================
   PRIVACY POLICY & TERMS OF USE PAGE STYLES
   ===================================================== */

.privacy-terms-hero {
    padding: 120px 0 80px 0;
    text-align: center;
    background: url('../img/home/background6.jpg') no-repeat center center/cover;
    position: relative;
    color: #ffffff;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.privacy-terms-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.privacy-terms-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f3f4f6;
    line-height: 1.6;
}

.privacy-terms-content {
    padding: 100px 0 60px;
    background-color: #f8fafc;
    margin-top: 0;
}

.privacy-terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-terms-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.privacy-terms-section h2 {
    color: rgba(33, 124, 118, 1);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(33, 124, 118, 0.2);
    font-weight: 700;
}

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

.privacy-terms-section p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
}

.privacy-terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-terms-section ul li {
    margin-bottom: 0.8rem;
    color: #4b5563;
}

.privacy-terms-section a {
    color: rgba(33, 124, 118, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-terms-section a:hover {
    color: rgba(33, 124, 118, 0.8);
    text-decoration: underline;
}

.effective-date {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 2rem;
    display: block;
}

.contact-info {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-terms-content {
        padding: 80px 0 40px;
    }
    
    .privacy-terms-section {
        padding: 25px;
    }
    
    .privacy-terms-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .privacy-terms-content {
        padding: 70px 0 30px;
    }
    
    .privacy-terms-section h2 {
        font-size: 1.8rem;
    }
    
    .privacy-terms-section h3 {
        font-size: 1.2rem;
    }
}