.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 10%;
    flex-wrap: wrap;
    background-color: #5a7e70;
    gap: 24px;
    color: white;
}

.footer-left,
.footer-right {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: center;
}

.footer-left h2,
.footer-right h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-left p {
    line-height: 1.6;
    margin: 8px 0;
}

.footer-left a {
    color: #facc15;
    text-decoration: none;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right ul li {
    margin-bottom: 8px;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
}

.footer-right ul li a:hover {
    color: #00d98e;
}

/* 🔻 Footer bottom styling */
.footer-bottom {
    background-color: white;
    color: gray;
    font-size: 14px;
    padding: 16px 10%;

    display: flex;
    justify-content: space-between; /* space between text & links */
    align-items: center; /* vertical align */
    flex-wrap: wrap; /* wrap for mobile */
}

.footer-bottom strong {
    color: #facc15;
}

.footer-bottom ul {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li a {
    color: gray;
    text-decoration: none;
}

.footer-bottom ul li a:hover {
    color: #00d98e;
}

/* 🔻 Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 24px 5%;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        flex: 1 1 100%;
        margin-bottom: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 13px;
        padding: 12px 5%;
    }

    .footer-bottom ul {
        justify-content: center;
    }
}
