.company-footer {
    background-color: #e9ecef;
    border-top: 3px solid #35b8a3;
    padding: 20px 0;
}

.company-footer .row {
    gap: 0 !important;
    margin-bottom: 0 !important;
}

.footer-logo-section {
    text-align: left;
    padding-right: 20px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #2d3436;
    margin-bottom: 8px;
}

.logo-graphic {
    margin: 8px 0;
}

.logo-text-cyrillic {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #636e72;
}

.logo-text-bold {
    font-weight: bold;
}

.footer-info-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-info-section .row {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-info-section .col-md-4 {
    padding: 0 10px;
}

.footer-section-title {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 8px;
    padding-top: 10px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
    margin-bottom: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #495057;
}

.footer-contact-item.footer-address {
    align-items: flex-start;
}

.footer-icon {
    margin-right: 8px;
    font-size: 14px;
    color: #1a5f7a;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .footer-logo {
        height: 45px;
        max-width: 220px;
    }
    
    .footer-logo-section {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-text-cyrillic {
        font-size: 16px;
    }
    
    .footer-info-section {
        text-align: center;
    }
    
    .footer-section-title {
        font-size: 14px;
    }
    
    .footer-contact-item {
        font-size: 13px;
        justify-content: center;
    }
    
    .footer-info-section .col-md-3,
    .footer-info-section .col-md-2 {
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        height: 30px;
    }
    
    .footer-info-section {
        text-align: center;
    }
    
    .footer-contact-item {
        font-size: 13px;
        justify-content: center;
    }
    
    .footer-info-section .col-md-3,
    .footer-info-section .col-md-2 {
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Links in footer */
.company-footer a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.company-footer a:hover {
    color: #35b8a3;
}








