/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.footer {
    background-color: rgba(26, 76, 69, 0.95);
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

/* Updated Typography Styles */
.footer-section h3 {
    color: #fff;
    font-size: 1.25rem;  /* 20px */
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: #2a7268;
}

.footer-section p {
    color: #e6e6e6;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.9375rem; /* 15px */
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
    font-size: 0.9375rem; /* 15px */
    font-weight: 400;
}

.footer-section ul li a {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #fff;
}

.contact-info li {
    color: #e6e6e6;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem; /* 15px */
    font-weight: 400;
}

.contact-info li i {
    color: #2a7268;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: #2a7268;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #0f2c28;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 0.875rem; /* 14px */
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section h3 {
        font-size: 1.125rem; /* 18px for mobile */
    }

    .footer-section p,
    .footer-section ul li,
    .contact-info li {
        font-size: 0.875rem; /* 14px for mobile */
    }
}
