.footer-container {
    background-color: #1c1c1e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e0e0e0;
    position: relative;
}

.footer-section h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: #4caf50;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-section p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #4caf50;
}

.social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #b0b0b0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #4caf50;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: #888;
    font-size: 14px;
}

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

    .footer-section {
        text-align: center;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .social-icons a {
        margin-right: 10px;
        font-size: 18px;
    }
}