/* 섹션 공통 스타일 */
.section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 25px;  /* 기본 마진 */
}

/* 섹션 제목 스타일 */
.section h2 {
    position: relative;
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding: 8px 0;
    padding-left: 18px;
    letter-spacing: -0.3px;
    display: inline-block;
}

.section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: #4C6EF5;
    border-radius: 2px;
}

.section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e9ecef;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .section {
        padding: 25px;
        margin: 18px 15px !important;  /* !important 추가하여 강제 적용 */
        border-radius: 8px;
        margin-bottom: 0 !important;  /* 기존 margin-bottom 제거 */
    }

    .section:first-child {
        margin-top: 18px !important;  /* 첫 번째 섹션도 동일한 여백 */
    }

    .section h2 {
        font-size: 1.3em;
        margin: 0 0 25px 0;
        padding-left: 15px;
    }

    .section h2::before {
        height: 16px;
    }
}

/* common.css에 기본 스타일 정의 */
.section-description {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-left: 4px solid #4C6EF5;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 20px 0 30px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* 각 섹션별 커스텀 스타일은 modifier 클래스 사용 */
.section-description--qr {
    background: #e8f5e9;
    border-left-color: #43a047;
}

.section-description--pdf {
    background: #f8f9fa;
    padding: 1.2rem;
}

/* 헤더 스타일 */
.main-header {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0.8rem 1rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    width: 40px; 
    height: 40px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .main-header {
        padding-left: 3.5rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }

    .logo-image {
        width: 40px; 
        height: 40px;
    }
} 