/* Footer */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main-footer {
    background-color: #0b162b;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding: 36px 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 140px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 224px;
}

.footer-logo-wrapper {
    position: relative;
    width: 142px;
    height: 50px;
}

.footer-logo,
.footer-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 142px;
    height: 50px;
}

.social-links {
    display: flex;
    gap: 32px;
}

.social-link {
    color: #92cc4b;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 205px;
}

.footer-column-title {
    color: rgba(255, 255, 255, 0.39);
    font: 600 16px Sen;
    margin: 0;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #fff;
    font: 400 16px Sen;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8bc34a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-text {
    color: #fff;
    font: 400 14px Sen;
}/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 60px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .footer-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-brand {
        width: 100%;
        align-items: flex-start;
    }
    
    .footer-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 40px 60px;
    }
    
    .footer-column {
        min-width: 180px;
        flex: 1;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
        min-width: unset;
        align-items: center;
        text-align: center;
    }
    
    .footer-link-list {
        align-items: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-column-title {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-text {
        font-size: 12px;
    }
}

.no-decoration:hover {
    text-decoration: none;
}