/* 헤더 스타일 통일을 위한 CSS */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
    margin-right: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 500;
    color: #1a3569;
    margin-left: 15px;
    display: block;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.logo a:hover .logo-text,
.logo-text:hover {
    color: #e6002d;
}

/* 모바일에서 로고 및 로고 텍스트 스타일 */
@media (max-width: 768px) {
    .logo {
        display: flex;
        align-items: center;
        max-width: 80%;
    }
    
    .logo img {
        height: 68px;
        width: auto;
    }
    
    .logo-text {
        font-size: 16px;
        font-weight: 500;
        margin-left: 12px;
        white-space: nowrap;
        display: block;
        letter-spacing: -0.01em;
    }
    
    header .container {
        justify-content: space-between;
        display: flex;
        align-items: center;
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 15px;
        line-height: 1.3;
        font-weight: 500;
    }
    
    .logo img {
        height: 63px;
    }
} 