footer {
    background-color: var(--primarydeep-color);
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px; /* Adding gap between sections */
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
    padding: 0 15px; /* Adding padding inside each section for spacing */
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    color: aliceblue;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

ul li a {
    color: #fff;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

ul li i {
    margin-right: 10px;
}

.find-us iframe {
    width: 100%; 
    max-width: 300px; 
    height: 180px;
}

.footer-bottom {
    text-align: center;
    background-color: var(--primarydeep-color);
    padding: 15px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
}

/* Media Queries */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 25px; /* Adding more space between sections */
    }

    .footer-section h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 0;
    }

    h3 {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 4px;
    }

    ul li {
        font-size: 12px;
    }

    .footer-container {
        padding: 0 10px;
        gap: 10px; /* Adding gap between sections for small screens */
    }

    .footer-section {
        margin-bottom: 20px; /* Adding more space between sections */
        text-align: center;
    }

    ul li i {
        margin-right: 5px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 10px 0;
    }
}
