/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 해커스잡 스타일 컬러 시스템 */
:root {
    --primary-blue: #1a56db;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e40af;
    --secondary-blue: #e7f2ff;
    --accent-orange: #ff6b35;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-white: #ffffff;
    --background-light: #f8fafc;
    --background-gray: #f1f5f9;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, #ffffff 100%);
}

/* 버튼 스타일 - 해커스잡 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.btn-secondary {
    background: var(--background-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* 헤더 - 해커스잡 스타일 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

/* 새로운 로고 스타일 */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.ncs-text {
    color: #f59e0b;
    font-weight: 900;
}

.logo-tagline {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    font-style: italic;
    display: block;
    margin-top: -2px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a:hover {
    color: var(--primary-blue);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* 햄버거 메뉴 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* 메인 배너 - 동영상 배경 */
.hero {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 600px;
}

.hero-subtitle-year {
    display: inline-block;
    font-size: 38px;
    font-weight: 600;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.15);
    padding: 20px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title span {
    color: #f59e0b;
    text-shadow: 0 2px 15px rgba(245, 158, 11, 0.8);
}

.hero-description {
    font-size: 20px;
    color: #f9fafb;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.hero-buttons .btn {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background: #f59e0b;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(31, 41, 55, 0.1);
    color: #1f2937;
    border: 2px solid rgba(31, 41, 55, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(31, 41, 55, 0.15);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.2);
}

/* 섹션 공통 스타일 - 부드러운 파스텔톤 감성 */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1f2937;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(245, 158, 11, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #374151;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
    line-height: 1.6;
}

/* 학원 소개 - 부드러운 파스텔톤 감성 (핑크-로즈) */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9a8d4 0%, #fbb6ce 25%, #fcc5d8 50%, #fdd2e1 75%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1f2937;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #1f2937;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    border-left: 4px solid #d97706;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.about-features li i {
    color: #d97706;
    margin-right: 12px;
    font-size: 18px;
}

.about-stats {
    display: grid;
    gap: 24px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.stat-item h4 {
    font-size: 36px;
    font-weight: 800;
    color: #d97706;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-item p {
    font-size: 16px;
    color: #374151;
    font-weight: 600;
}

/* 강좌 안내 - 부드러운 파스텔톤 감성 (블루-시안) */
.courses {
    padding: 60px 0;
    background: linear-gradient(135deg, #7dd3fc 0%, #a5f3fc 25%, #bae6fd 50%, #e0f2fe 75%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.course-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.course-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    overflow: hidden;
}

.course-icon:has(.course-icon-img) {
    background: transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-icon-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.05);
}

.course-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1f2937;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.course-card p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
}

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.course-info span {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    border: 2px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
}

.course-click-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.course-click-hint:hover {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

.course-card:hover .course-click-hint {
    opacity: 1;
}

/* 강의 샘플 영상 섹션 */
.sample-video-section {
    margin-top: 60px;
    text-align: center;
}

.sample-video-card {
    max-width: 500px;
    margin: 0 auto;
}

.sample-video-link {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 24px 32px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.sample-video-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: #ff0000;
}

.video-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.video-content {
    flex: 1;
    text-align: left;
}

.video-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.video-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.video-play-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sample-video-link:hover .video-play-button {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1);
}

/* 돌아가기 버튼 스타일 */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 12px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(-2px);
}

/* 빨간색 강조 텍스트 */
.highlight-red {
    color: #dc2626;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    position: relative;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* 온/오프라인 검증 멘트 스타일 */
.verification-message {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 50%, #ffad00 100%);
    margin-bottom: 0;
}

.verification-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    line-height: 1.3;
}

.verification-subtitle {
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.verification-highlight {
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* 강사 실력 강조 섹션 */
.instructor-expertise {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.expertise-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.4;
}

.expertise-highlight {
    color: #fbbf24;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.5);
    position: relative;
}

.expertise-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.expertise-description {
    margin-bottom: 50px;
}

.expertise-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.expertise-warning {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.expertise-warning h3 {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.expertise-warning p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.expertise-commitment {
    background: rgba(251, 191, 36, 0.1);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.expertise-commitment h3 {
    color: #fbbf24;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.commitment-points p {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

/* 커리큘럼 상세 페이지 스타일 */
.curriculum-detail {
    padding: 60px 0;
    background: var(--background-white);
    min-height: 100vh;
}

.curriculum-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

/* 시간표 이미지 스타일 */
.schedule-image {
    text-align: center;
    margin-bottom: 40px;
}

.schedule-image h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.schedule-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

/* 시간표 placeholder 스타일 */
.schedule-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: rgba(245, 158, 11, 0.1);
    border: 2px dashed rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    color: #d97706;
}

.schedule-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.schedule-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
}

/* 커리큘럼 내용 상세 스타일 */
.curriculum-content {
    max-width: 1000px;
    margin: 0 auto;
}

.curriculum-content-detail h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.feature-cards {
    display: grid;
    gap: 24px;
    margin-top: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.duration {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.curriculum-footer {
    margin-top: 48px;
    text-align: center;
}

.consultation-cta {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.consultation-cta h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.consultation-cta .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border: none;
    font-weight: 600;
}

.consultation-cta .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

/* 지점별 커리큘럼 버튼 스타일 */
.curriculum-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.curriculum-btn {
    background: var(--gradient-secondary);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.curriculum-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e7f2ff 0%, #ddd6fe 100%);
    border-color: var(--primary-blue);
}

.curriculum-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.curriculum-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.curriculum-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* 합격 후기 - 부드러운 파스텔톤 감성 (라벤더-퍼플) */
.success-stories {
    padding: 60px 0;
    background: linear-gradient(135deg, #c084fc 0%, #ddd6fe 25%, #e9d5ff 50%, #f3e8ff 75%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.featured-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.story-card.featured {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.story-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-content {
    position: relative;
}

.quote-mark {
    font-size: 48px;
    color: #d97706;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.story-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 24px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.company-details p {
    margin: 0;
    line-height: 1.4;
}

.company-details p:first-child {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.company-details p:last-child {
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stories-section {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.stories-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.stories-section-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 48px;
}

/* 슬라이드 컨테이너 스타일 */
.stories-slider {
    position: relative;
    margin-top: 40px;
}

.stories-slider-container {
    overflow: hidden;
    border-radius: 20px;
}

.stories-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.stories-slide.active {
    display: block;
    opacity: 1;
}

/* 카드가 적을 때 더 자연스럽게 배치 */
.stories-slide:last-child .stories-grid {
    justify-content: center;
    grid-template-columns: repeat(2, minmax(350px, 500px));
    max-width: 1200px;
    margin: 0 auto;
}

/* 슬라이드 컨테이너 스타일 */
.stories-slider {
    position: relative;
    margin-top: 40px;
}

.stories-slider-container {
    overflow: hidden;
    border-radius: 20px;
}

.stories-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.stories-slide.active {
    display: block;
    opacity: 1;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
    min-height: 400px;
    align-content: start;
    justify-content: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* 오버레이 화살표 네비게이션 */
.slider-overlay-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    z-index: 10;
    opacity: 0.7;
}

.slider-overlay-btn:hover {
    opacity: 1;
    background: rgba(245, 158, 11, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-overlay {
    left: 20px;
}

.next-overlay {
    right: 20px;
}

/* 슬라이드 컨테이너에 호버 시 화살표 더 잘 보이게 */
.stories-slider:hover .slider-overlay-btn {
    opacity: 0.9;
}

.story-card:not(.featured) {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-card:not(.featured):hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    margin-bottom: 16px;
}

.story-category {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 4px;
}

.story-tag {
    display: block;
    font-size: 14px;
    color: #6b7280;
}
.story-preview {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 합격후기 이미지 슬라이드 스타일 */
.success-reviews-slider {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-radius: 20px;
}

.slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.slider-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.slider-header p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slide {
    min-width: calc((100% - 60px) / 4);
    flex-shrink: 0;
}

.review-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.review-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(37, 99, 235, 0.6);
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .slide {
        min-width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .slide {
        min-width: calc((100% - 20px) / 2);
    }
    
    .slider-container {
        gap: 15px;
        margin: 0 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .review-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .slide {
        min-width: 100%;
    }
    
    .slider-container {
        gap: 10px;
        margin: 0 10px;
    }
    
    .review-image {
        height: 200px;
    }
}

/* 강사진 소개 - 부드러운 파스텔톤 감성 (그린-민트) */
.teachers {
    padding: 60px 0;
    background: linear-gradient(135deg, #86efac 0%, #a7f3d0 25%, #bbf7d0 50%, #dcfce7 75%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.teachers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.teacher-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.teacher-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.teacher-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(251, 191, 36, 0.4);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.teacher-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 강호균 강사 이미지 위치 조정 */
.teacher-card:nth-child(2) .teacher-photo {
    object-position: center 60%;
}

.teacher-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
}

.teacher-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.teacher-title {
    font-size: 16px;
    color: #d97706;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

.teacher-desc {
    font-size: 16px;
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.teacher-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.teacher-skills span {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
}

/* 갤러리 - 부드러운 파스텔톤 감성 (오렌지-옐로우) */
.gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdba74 0%, #fcd34d 25%, #fde68a 50%, #fef3c7 75%, #fffbeb 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(10px);
    padding: 40px 28px 28px;
    color: white;
}

.gallery-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.5;
}

/* 합격을 축하합니다 - 부드러운 파스텔톤 감성 (골드-옐로우) */
.congratulations {
    padding: 60px 0;
    background: linear-gradient(135deg, #fde047 0%, #facc15 25%, #eab308 50%, #ca8a04 75%, #a16207 100%);
    position: relative;
    overflow: hidden;
}

.congratulations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.congratulations-slider {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    z-index: 2;
}

.congratulations-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 400px;
}

.congratulations-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: scrollUp 60s linear infinite;
    height: auto;
}

.congratulations-item {
    padding: 10px 20px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
    text-align: center;
    margin: 2px 0;
    white-space: nowrap;
    overflow: visible;
    min-width: fit-content;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.congratulations-track:hover {
    animation-play-state: paused;
}


/* 연락처 - 부드러운 파스텔톤 감성 (퍼플-인디고) */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 25%, #ddd6fe 50%, #e4e7ff 75%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

/* 지점별 그룹 스타일 */
.branch-group {
    margin-bottom: 25px;
    padding: 16px;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 12px;
    border-left: 4px solid #d97706;
}

.branch-group:last-child {
    margin-bottom: 15px;
}

.contact-general {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    gap: 20px;
}

/* 지점 그룹 내 전화번호는 더 가깝게 */
.branch-group .contact-item {
    margin-bottom: 12px;
}

.branch-group .contact-item.phone {
    margin-bottom: 0;
    margin-top: 8px;
    padding-left: 12px;
}

.contact-general .contact-item {
    margin-bottom: 15px;
}

.contact-item i {
    color: #d97706;
    font-size: 20px;
    margin-top: 2px;
    width: 24px;
    text-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

.contact-item p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
}

.contact-item strong {
    color: #1f2937;
    font-weight: 700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 36px;
    text-align: center;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.kakao-consultation {
    background: var(--gradient-secondary);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kakao-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e7f2ff 0%, #ddd6fe 100%);
}

.consultation-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.consultation-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.consultation-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.consultation-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--background-light);
    border-radius: 12px;
    text-align: center;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

.feature-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.consultation-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--background-light);
    border-radius: 8px;
}

.info-item i {
    color: var(--primary-blue);
    font-size: 16px;
}

.info-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* 푸터 */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-main-text {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-main-text:hover {
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.gallery-hours {
    text-align: center;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.gallery-hours .hours-info {
    color: #d97706;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    background: rgba(245, 158, 11, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--background-white);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 16px 0;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .hero-subtitle-year {
        font-size: 26px;
        padding: 12px 24px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-text-section {
        gap: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultation-features {
        grid-template-columns: 1fr;
    }
    
    .consultation-info {
        grid-template-columns: 1fr;
    }

    /* 지점별 커리큘럼 버튼 모바일 반응형 */
    .curriculum-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .curriculum-btn {
        padding: 16px;
        gap: 12px;
    }

    .curriculum-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .curriculum-content h4 {
        font-size: 14px;
    }

    .curriculum-content p {
        font-size: 12px;
    }

    /* 강의 샘플 영상 모바일 반응형 */
    .sample-video-section {
        margin-top: 40px;
    }

    .sample-video-link {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .video-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .video-content {
        text-align: center;
    }

    .video-content h4 {
        font-size: 16px;
    }

    .video-content p {
        font-size: 13px;
    }

    .video-play-button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .kakao-consultation {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-stories {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }
    
    .story-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 45vh;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-text-section {
        gap: 16px;
    }
    
    .hero-subtitle-year {
        font-size: 22px;
        padding: 10px 20px;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-section-title {
        font-size: 24px;
    }
    
    .story-content h4 {
        font-size: 18px;
    }
    
    .quote-mark {
        font-size: 36px;
    }
}

/* 매우 작은 모바일 화면 (320px-360px) */
@media (max-width: 360px) {
    .hero {
        padding: 30px 0;
        min-height: 45vh;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-subtitle-year {
        font-size: 18px;
        padding: 8px 16px;
        letter-spacing: 0px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 8px;
    }
    
    .hero-text-section {
        gap: 12px;
    }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* 스크롤바 스타일링 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

/* 시간표 placeholder 스타일 */
.schedule-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: rgba(245, 158, 11, 0.1);
    border: 2px dashed rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    color: #d97706;
}

.schedule-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.schedule-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
} 

/* 새로운 섹션들의 모바일 반응형 스타일 */
@media (max-width: 768px) {
    .verification-title {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .verification-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .instructor-expertise {
        padding: 50px 0;
    }
    
    .expertise-title {
        font-size: 26px;
    }
    
    .expertise-description p {
        font-size: 16px;
        text-align: center;
    }
    
    .expertise-warning {
        padding: 20px;
    }
    
    .expertise-warning h3 {
        font-size: 20px;
    }
    
    .expertise-warning p {
        font-size: 14px;
        text-align: center;
    }
    
    .expertise-commitment {
        padding: 25px;
    }
    
    .expertise-commitment h3 {
        font-size: 20px;
    }
    
    .commitment-points p {
        font-size: 15px;
        padding: 12px 15px;
    }

    /* 긴 부제목을 위한 모바일 반응형 */
    .section-subtitle {
        font-size: 16px;
        max-width: 95%;
        padding: 0 10px;
    }

    /* 합격 축하 섹션 모바일 반응형 */
    .congratulations-slider {
        margin: 30px auto 0;
        max-width: 95%;
    }

    .congratulations-container {
        padding: 15px;
        overflow: hidden;
        height: 350px;
    }

    .congratulations-track {
        gap: 6px;
    }

    .congratulations-item {
        padding: 8px 16px;
        font-size: 14px;
        margin: 1px 0;
        white-space: nowrap;
        overflow: visible;
        min-width: fit-content;
    }

} 