/* General Footer Styles */
/* body{
    overflow: hidden;
} */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 30px 20px;
    font-family: "Poppins", sans-serif;
}

.footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;  /* Allows elements to wrap in mobile view */
}

.footer_width {
    flex-basis: 23%;
    margin-bottom: 20px;
}

/* Quick Links */
.footer_width.logolinks h4,
.footer_width.contact h4,
.footer_width.address h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer_width.logolinks ul,
.footer_width.contact ul {
    list-style: none;
    padding: 0;
}

.footer_width.logolinks ul li,
.footer_width.contact ul li {
    margin-bottom: 10px;
}

.footer_width.logolinks a,
.footer_width.contact a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer_width.logolinks a:hover,
.footer_width.contact a:hover {
    color: #ffffff;
}

/* Address */
.footer_width.address p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

.footer_width.address i {
    margin-right: 10px;
}

/* Social Media */
.footer_width.address .social-media ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.footer_width.address .social-media li {
    margin-right: 15px;
}

.footer_width.address .social-media a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.footer_width.address .social-media a:hover {
    color: #ffffff;
}

/* Google Map Embed */
.footer_width.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer_width {
        flex-basis: 48%; /* Adjust for mobile, make each section take up more space */
        margin-bottom: 20px;
    }
    
    .footer_width.map {
        flex-basis: 100%;
    }

    .footer_info {
        flex-direction: column; /* Stack the sections vertically */
        align-items: center;
    }

    .footer_width.address .social-media ul {
        justify-content: left;
    }
}
