.footer-custom {
    background: linear-gradient(to right, #01d472, #16b4fd);
    color: #ffffff; 
    font-family: 'Segoe UI', system-ui, sans-serif;
    position: relative;
}

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

.brand-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0; 
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
    .footer-custom {
        text-align: center;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
    .footer-title {
        margin-top: 20px;
    }
}