/* Contact Us Section */
.contact-us {
    background-color: #ffffff;
    padding: 50px 0;
}

.contact-us h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0e4d92;
}

.contact-us .row {
    display: flex;
    justify-content: space-between;
    /* gap: 30px; */
}

.contact-us .col-md-6 {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 30px;
}

.contact-us .form-label {
    font-weight: 600;
    color: #0e4d92;
}

.contact-us .form-control {
    border: 1px solid #0e4d92;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-us .btn-primary {
    background-color: #0e4d92;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
}

.contact-us .btn-primary:hover {
    background-color: #00bfa6;
}

/* Contact Information Section */
.contact-us .list-unstyled {
    font-size: 1.1rem;
    color: #333;
}

.contact-us .list-unstyled li {
    margin-bottom: 15px;
}

.contact-us .list-unstyled i {
    color: #0e4d92;
    margin-right: 10px;
}

.contact-us .list-unstyled a {
    color: #0e4d92;
}

.contact-us .list-unstyled a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.contact-us .fa {
    font-size: 1.5rem;
    color: #0e4d92;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.contact-us .fa:hover {
    color: #00bfa6;
}