.footer {
    display: flex;
    align-items: center;
    text-align: center;
    font-family: "Montserrat", serif;
}

.footer .container-footer {
    padding-top: 5vh;
    margin: 0 auto;
    width: 100%;
}

.footer .row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Section */
.footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
    padding-left:10px;
    text-align: left;
}

.footer-left h2 {
    font-family: "Montserrat", serif;
    font-weight: bold;
    color: #3e8e41;
    margin-bottom: 20px;
}

.footer-left img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Right Section */
.footer-right {
    flex: 1;
    width: 80%;
}

.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-right input,
.footer-right textarea {
    width: 95%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
}

.footer-right input:focus,
.footer-right textarea:focus {
    border-color: #3e8e41;
    outline: none;
    box-shadow: 0 0 5px rgba(62, 142, 65, 0.5);
}

.footer-right button {
    background-color: #3e8e41;
    color: #fff;
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    float: left;
}

.footer-right button:hover {
    background-color: #218838;
}

.footer-image img {
    width: 100%; /* Stretch image to full screen width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    margin: 0; /* Remove any margins */
    padding: 0; /* Remove any padding */
}

/* Footer Bottom Section */
.footer-bottom p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .row-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .mid{
        margin-top: 5%;
    } 
}

/* footer section end*/