/* Contact Page Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
.contact-section {
    max-width: 700px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(40,53,147,0.07);
    padding: 2.5rem 2rem;
}
.contact-section h2 {
    color: #283593;
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
.contact-form button {
    background: #283593;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #3949ab;
}
.about-hero {
            background: url('images/contact-banner.jpg') center/cover no-repeat;
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            font-size: 2.8rem;
            font-weight: bold;
            letter-spacing: 2px;
        }
        .contact-info-boxes {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin: 3rem 0 2rem 0;
            flex-wrap: wrap;
        }
        .contact-box {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(40,53,147,0.08);
            padding: 2rem 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 220px;
            max-width: 320px;
        }
        .contact-box i {
            font-size: 2.2rem;
            color: #283593;
            margin-bottom: 1rem;
        }
        .contact-box .label {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #283593;
        }
        .get-in-touch-section {
            max-width: 600px;
            margin: 2.5rem auto 3rem auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(40,53,147,0.07);
            padding: 2.5rem 2rem;
        }
        .get-in-touch-section h2 {
            color: #283593;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.7rem;
            margin-bottom: 1.2rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .contact-form button {
            background: #283593;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
        }
        .contact-form button:hover {
            background: #3949ab;
        }
        @media (max-width: 900px) {
            .contact-info-boxes { flex-direction: column; align-items: center; }
        }