/* privacy.css - Custom styles for Privacy Policy page */

.privacy-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.privacy-section h2 {
    color: #2a7ae2;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    text-align: center;
}

.policy-block {
    margin-bottom: 2rem;
}

.policy-block h3 {
    color: #1a4d8f;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.policy-block ul {
    margin-left: 1.5rem;
    margin-bottom: 0.7rem;
    list-style: disc inside;
}

.policy-block ul ul {
    list-style: circle inside;
    margin-left: 1.5rem;
}

.policy-block p {
    margin-bottom: 0.7rem;
    color: #333;
}

.privacy-section strong {
    color: #2a7ae2;
}

/* Security section styles */
.security-section {
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 2.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 2rem auto;
}

.security-section h2 {
    color: #2a7ae2;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    text-align: center;
}

.security-section .policy-block h3 {
    color: #1a4d8f;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.security-section .policy-block ul {
    margin-left: 1.5rem;
    margin-bottom: 0.7rem;
    list-style: disc inside;
}

.security-section .policy-block p {
    margin-bottom: 0.7rem;
    color: #333;
}

/* Contact section styles */
.contact-section {
    background: #eaf3fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 1.5rem 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 2rem auto;
    text-align: center;
}
.contact-section h3 {
    color: #1a4d8f;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.contact-section p {
    color: #333;
    margin-bottom: 0.5rem;
}
.contact-section strong {
    color: #2a7ae2;
}

/* General adjustments for main container */
.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    .privacy-section,
    .security-section,
    .contact-section {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .privacy-section,
    .security-section,
    .contact-section {
        padding: 1rem 0.5rem;
    }
    .privacy-section h2,
    .security-section h2 {
        font-size: 1.3rem;
    }
    .policy-block h3,
    .security-section .policy-block h3,
    .contact-section h3 {
        font-size: 1rem;
    }
}
