
/* FOOTER STYLES */
.footer {
    background-color: #9c0505;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px 0;
    text-align: left !important;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid #ffcc00;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
    margin-bottom: 10px; /* Added margin-bottom for gap */
}

.footer-section ul li a {
    color: #fff !important;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #00ff33 !important;
}


.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 32px;
    height: 32px;
}

.map iframe {
    width: 100%;
    height: 150px;
    border: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ffcc00;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/* Media query for mobile devices */
@media (max-width: 768px) {
    .footer-container {
        display: flex !important;
        flex-direction: column !important; /* Stacks sections vertically */
        align-items: center !important; /* Centers sections horizontally */
        gap: 30px !important; /* Adds spacing between sections */
    }

    .footer-section {
        text-align: center !important; /* Centers text inside sections */
        min-width: 100% !important; /* Makes sections take up full width */
    }

    .footer-bottom {
        text-align: center !important;
    }
}