.container-fluid.main-content.contactus {
    padding: 0;
    max-width: 100%;
}

.contact-header {
    position: relative;
    height: 350px;
    background: url('../images/contactus.jpg') no-repeat center top/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 107, 46, 0.36);
    z-index: 1;
}

.contact-header-content {
    position: relative;
    z-index: 2;
}

.contact-header-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-header-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    opacity: 0.8;
}

.contact-section {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background-color: #5c9344;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -6rem;
    /* Pull up to overlap header */
    position: relative;
    z-index: 3;
}

.contact-left h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-left p {
    color: white;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-info-item .icon-circle {
    background-color: #E6F7F2;
    color: #28a745;
    padding: 0.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item .info-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1rem;
    height: 50px;
    font-size: 1rem;
    padding-left: 2.5rem;
    /* Space for icon */
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
    border-color: #3182ce;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

.form-group {
    position: relative;
}

.btn-green {
    background-color: #28a745;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-green:hover {
    background-color: #218838;
}

/* Footer Styling */
.footer-section {
    background-color: #5c9344;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 400px;
}

.footer-heading {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}