.main-footer {
    background: #2c3e50;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Contact Bar Styles */
.contact-bar {
    background: #333333;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-info {
       /* display: flex; */
    /* align-items: center; */
    font-size: 1.6rem;
    font-weight: 600;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color:      var(--bright-yellow);
    font-size: 1.5rem;
    border-radius: 50%;
    border: 1px solid #646554;
    padding: 10px 11px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.contact-item p {
    font-size: 0.9rem;
    color: #b6b6b6;
}

/* Footer Content Styles */
.footer-content {
    padding: 3rem 5%;
    display: flex;
    /* grid-template-columns: 2fr 1fr 1fr; */
    gap: 2rem;
    background: #f4f4f4;
    justify-content: space-around;
    flex-wrap: wrap;
}


.footer-section{
    max-width: 40%;
}

.footer-section h3 {
    color: #1d5135;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-decoration: underline;
    /* font-style: italic; */
}

.footer-section.about{
    min-width: 280px;
}

.footer-section .mn-logo{
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section p {
    color: black;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #b09d38;
}

/* Footer Bottom Styles */
.footer-bottom {
    background: #d5ddd8;
    padding: 1.5rem 10%;
    padding-left: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #245035;
    font-size: 1.7rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--dark-golden);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info {
        gap: 1rem;
    }
    
    .footer-content {
        /* grid-template-columns: 1fr 1fr; */
    }
}

@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 2%;
    }

    .contact-info {
        /* flex-direction: column; */
        align-items: center;
        justify-content: space-around;
        width:100%;
    }

    .contact-item {
        flex-direction: column;
    }

    .footer-content {
        /* grid-template-columns: 1fr; */
        text-align: left;
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
}

@media (max-width: 550px) {
    .contact-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 2%;
    }

    .contact-info {
        flex-direction: column;
        width: auto;
        align-items: flex-start;
    }

    .contact-item {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
    }
    .footer-section {
        max-width: auto;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-content {
        justify-content: space-around;
        column-gap: 14%;
        padding-bottom: 1.5rem;
    }

   

}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: row;
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }
}

