/* Footer Styles */
.footer {
    background-color: #efeffb;
    color: #333;
    margin-top: 30px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #efeffb;
    flex-wrap: nowrap;
}


.footer-section {
    flex: 1;
    margin-top: 10px;
    padding: 20px;
    
}

.footer-section h1,
.footer-section h4 {
    margin-bottom: 20px;
    font-family: 'josefins Sans', sans-serif;
    color: #000;
}

.contact-info {
    font-family: 'lato', sans-serif;
    color: #333;
    margin-top: 40px;
}
.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    font-family: 'lato', sans-serif;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
}

.social-icons i {
    font-size: 24px;
    color: #555;
}

.social-icons i:hover {
    color: #000;
}

.end {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto;
    padding: 5px 0;
    height: 35px;
    background-color: #e7e4f8;
}

.end-container {
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.rights {
    color: #333;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 880px){
    iframe{
        height: 150px;
        width: 220px;
    }
    .footer {
        background-color: #efeffb;
        color: #333;
        
    }
   
}





@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack all sections vertically */
        align-items: center;   /* Center-align all sections */
        text-align: center;    /* Center text content */
    }

    .footer-section {
        margin: 10px 0;        /* Reduce margin between sections */
        padding: 10px;         /* Adjust padding for compact layout */
        width: 100%;           /* Make sections take full width */
    }

    .footer-section h1, 
    .footer-section h4 {
        font-size: 16px;       /* Reduce heading size */
    }

    .footer-section ul li {
        margin-bottom: 5px;    /* Reduce spacing between list items */
    }

    .footer-section ul li a {
        font-size: 14px;       /* Reduce font size for links */
    }

    .contact-info {
        font-size: 14px;       /* Adjust contact info text size */
    }

    iframe {
        width: 300px;            /* Center and resize the map */
        height: 160px;         /* Reduce height of the map */
        margin: 0 auto;        /* Center the map horizontally */
    }

    .social-icons {
        justify-content: center; /* Center-align social media icons */
        margin-top: 20px;
    }

    .social-icons a {
        margin: 0 5px;          /* Adjust spacing between icons */
    }

    .social-icons i {
        font-size: 18px;        /* Reduce social media icon size */
    }

    .end {
        flex-direction: column; /* Stack "rights reserved" text */
        align-items: center;    /* Center-align text */
        padding: 10px 0;
    }

    .rights {
        font-size: 14px;        /* Adjust font size for rights reserved text */
        text-align: center;     /* Center-align text */
    }
}
@media (max-width: 360px){
    iframe{
        width: 200px;
    }
}