.site-footer {
    background: #000;
    color: #fff;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.footer-logo .custom-logo {
    max-height: 50px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-email {
    color: #D0F45B;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.8;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.footer-navigation {
    display: block;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-right {
        grid-column: 1 / -1;
    }
    
    .footer-description {
        font-size: 15px;
        line-height: 24px;
    }
    
    .footer-contact-item {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 25px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-item {
        font-size: 14px;
        line-height: 22px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-navigation {
        display: flex;
        justify-content: center;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .footer-menu a {
        font-size: 13px;
        line-height: 24px;
        display: block;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-grid {
        gap: 32px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        display: flex;
    }
    
    .footer-logo .custom-logo {
        max-height: 40px;
    }
    
    .footer-description {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-item {
        font-size: 13px;
        line-height: 20px;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-icon {
        width: 18px;
        height: 18px;
        margin: 0;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-navigation {
        justify-content: center;
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-menu a {
        text-align: center;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
        text-align: center;
    }
}

