footer {
    background-color: #27ae60; /* Green background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

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

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section p,
.footer-section ul,
.footer-section li {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #59db5d; /* Light green hover effect */
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons li {
    list-style: none;
}

.social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
}
