.custom-footer-wrapper {
    background-color: #3f7b61; /* Fallback green if not set in controls */
    background-image: linear-gradient(to bottom, #2b614b, #5ea97e);
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: sans-serif;
}

.custom-footer-wrapper a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.custom-footer-wrapper a:hover {
    opacity: 0.8;
}

.custom-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    padding-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 0;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.footer-col p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #55c8e6;
    color: #fff !important;
    border-radius: 50%;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto 0;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .custom-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
