.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    width: 33px;
    height: 32px;
    margin-right: 12px;
}

.site-name {
    font-weight: bold;
    font-size: 2.5rem;
    color: #000;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Стили для .logo-container и .logo-image в checking.html */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 140px;
    height: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .site-name {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        width: 28px;
        height: 27px;
        margin-right: 8px;
    }
    
    .site-name {
        font-size: 1.8rem;
    }
    
    .logo-image {
        width: 100px;
    }
}

@media (max-width: 370px) {
    .site-name {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 80px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .header-logo {
    width: 26px;
    height: 25px;
}

.footer-logo .site-name {
    font-size: 1.8rem;
}

@media (max-width: 480px) {
    .footer-logo .header-logo {
        width: 22px;
        height: 21px;
    }
    
    .footer-logo .site-name {
        font-size: 1.6rem;
    }
} 