/* ============================================
   Legal / Content Pages Styles
   Privacy Policy, Terms & Conditions, Contact Us
   ============================================ */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.legal-last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a365d;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #4a5568;
}

.legal-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Intro paragraph */
.legal-intro {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: #edf2f7;
    border-radius: 8px;
    border-left: 4px solid #1a365d;
}

/* Contact page specific */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.75rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
    margin-top: 0;
    border: none;
    padding: 0;
}

.contact-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: #2b6cb0;
    font-weight: 500;
}

.contact-response-note {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 2rem 0;
    text-align: center;
}

.contact-response-note p {
    color: #276749;
    margin: 0;
    font-size: 0.95rem;
}

.contact-response-note strong {
    color: #22543d;
}

/* Disclaimer box */
.legal-disclaimer {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.legal-disclaimer p {
    color: #9b2c2c;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem 1rem 2rem;
    }

    .legal-content h1 {
        font-size: 1.6rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}
