/* General footer styling */
.site-footer-light {
    display: flex;
    justify-content: center;
}

.footer-light-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 50px;
    border-top: 1px solid #acacac;
}

/* Left section: Logo and phone number */
.footer-light-left {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
}

.footer-light-logo {
    width: 100px; /* Adjust logo size */
    margin-bottom: 10px;
}

.footer-light-left p {
    margin: 5px;
    font-size: 18px;
    font-weight: 400;
}

/* Center section: Navigation links */
.footer-light-nav {
    display: flex;
    gap: 20px; /* Space between links */
}

.footer-light-nav a {
    text-decoration: none;
    font-size: 1rem;
}

.footer-light-nav a:hover {
    text-decoration: underline;
}

/* Right section: Social media icons and button */
.footer-light-right {
    display: flex;
    align-items: center;
    color: #ffffff;
    gap: 20px;
}

.footer-light-social a {
    margin-right: 10px;
}

.footer-light-social img {
    width: 35px; /* Adjust icon size */
    height: 35px;
    border-radius: 50%;
}

.footer-light-btn {
    position: relative;
    text-decoration: none;
    text-align: center;
    min-width: 150px;
    padding: 5px 10px;
    background-color: #CF002C;
    border-radius: 3px;
}


.footer-light-btn:hover {
    background-color: #b71c1c; /* Darker red on hover */
}

.footer-light-services {
    position: relative;
}

.services-dropdown {
    display: none;
    position: absolute;
    bottom: 100%; /* Position the dropdown above the "Services" button */
    left: 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
}

.services-dropdown a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #151515;
    font-size: 16px;
}

.services-dropdown a:hover {
    background-color: #f0f0f0;
}

/* Show the dropdown on hover */
.footer-light-services:hover .services-dropdown {
    display: block;
}