.footer-custom {
    background: linear-gradient(180deg, #f5f7fa, #e8ecef);
    color: #333;
    padding: 60px 0 20px;
    font-family: 'Manrope', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    color: #555;
    text-align: justify;
}

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

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2E7D32;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 5px 0;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        min-width: 100%;
    }

    .footer-description {
        text-align: justify;
        max-width: 90%;
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}