.footer-main-container {
    max-width: 1200px;
    height: auto;
    margin: 20px auto;
    padding: 50px 20px 30px;
}

.footer-section-box {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 30px;
}

.footer-img {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    margin-left: -2px;
}

.footer-section {
    flex: 1;
    max-width: 250px;
}

.footer-section h3 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--yellow), var(--green));
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section ul li a:hover {
    color: var(--green);
    text-decoration: none;
}


.footer-section:last-child ul li a {
    justify-content: flex-start;
    gap: 10px;
}

.footer-section:last-child ul li a::before {
    content: "•";
    color: var(--yellow);
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .footer-section-box {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-section {
        max-width: 100%;
    }
    
    .footer-img {
        width: 150px;
    }
}

.footer {
    margin-top: 80px;
    background: white;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
}

.social-support {
    display: flex;
    gap: 15px;
    justify-content: left;
    margin-top: 10px;
}

.social-support a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}


.social-support a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-support i {
    font-size: 20px;
}

.social-support i:first-child{
    margin-bottom: 1.5px;
    margin-left: 0.5px;
}