/*=============== FOOTER SECTION ===============*/
.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 1.5rem;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer__section {
    flex: 1 1 200px;
    margin-bottom: 1.5rem;
}

.footer__title {
    font-size: 1.25rem;
    color: #68B92E; /* Primary green color */
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #68B92E;
}

.footer__contact p {
    margin: 0.5rem 0;
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: #68B92E;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer__social-link:hover {
    color: #fff;
}

.footer__bottom {
    background-color: #282828;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
    }

    .footer__section {
        width: 100%;
        text-align: center;
    }

    .footer__social-links {
        justify-content: center;
    }
}