/* ==========================================================
   에듀시즌 헤더 스타일 시작
   ========================================================== */
        /* 초기화 */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Noto Sans KR', sans-serif; color: #333; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        #header_main {
            width: 100%; height: 80px; background-color: #ffffff;
            border-bottom: 1px solid #f0f0f0; display: flex;
            align-items: center; position: sticky; top: 0; z-index: 9999;
        }

        .header_container {
            width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
            display: flex; justify-content: space-between; align-items: center;
        }

        .logo img { height: 42px; display: block; }

        .nav_right { display: flex; align-items: center; }
        .nav_right > ul { display: flex; align-items: center; gap: 25px; }

        /* 다국어 드롭다운 */
        .lang_dropdown { position: relative; cursor: pointer; padding: 20px 0; }
        .lang_selected { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
        .lang_list {
            display: none; position: absolute; top: 70px; left: 50%; transform: translateX(-50%);
            background: #ffffff; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 12px; min-width: 140px; border: 1px solid #eee; padding: 8px 0;
        }
        .lang_dropdown:hover .lang_list { display: block; }
        .lang_list li a { display: block; padding: 10px 15px; font-size: 13px; text-align: center; }
        .lang_list li a:hover { background-color: #f8f9fa; color: #10927d; font-weight: 600; }

        /* 버튼 스타일 */
        .user_info { font-size: 14px; font-weight: 700; color: #10927d; }
        .btn_login { font-size: 14px; font-weight: 500; color: #666; }
        .btn_action {
            background-color: #10927d; color: #ffffff !important;
            padding: 10px 20px; border-radius: 8px; font-weight: 600;
            font-size: 14px; transition: 0.3s;
        }
        .btn_action:hover { background-color: #0d7a68; }
        .btn_logout { font-size: 13px; color: #999; margin-left: 10px; }

        /* [추가] 모바일 반응형 스타일 (768px 이하) */
        @media (max-width: 768px) {
            #header_main { height: 65px; }
            .logo img { height: 32px; }
            .nav_right > ul { gap: 12px; } /* 간격 축소 */
            
            /* 다국어 텍스트 숨김 (아이콘만 표시) */
            .lang_selected span, .lang_selected .fa-angle-down { display: none; }
            .lang_selected i { font-size: 18px; }

            /* 사용자 이름 숨김 (아이콘/로그아웃만 표시) */
            .user_info { font-size: 0; }
            .user_info i { font-size: 20px; }
            .btn_logout { font-size: 11px; margin-left: 5px; vertical-align: middle; }

            .btn_login { font-size: 13px; }
            .btn_action { padding: 8px 12px; font-size: 12px; border-radius: 6px; }
        }

        /* 초소형 모바일 대응 (375px 이하) */
        @media (max-width: 375px) {
            .nav_right > ul { gap: 8px; }
            .header_container { padding: 0 10px; }
            .btn_action { padding: 6px 10px; letter-spacing: -0.5px; }
        }

/* ==========================================================
   에듀시즌 헤터 스타일 끝
   ========================================================== */

/* ==========================================================
   에듀시즌 메인페이지 히어로 사작
   ========================================================== */
   /* [1. 기본 설정] */
    body { font-family: 'Noto Sans KR', sans-serif; margin: 0; padding: 0; background-color: #fff; overflow-x: hidden; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

   /* [2. 히어로 섹션 전체 배경] */
    .hero-wrapper { 
        width: 100%; 
        background-color: #f0f7ff; 
        padding: 80px 0 140px; 
        position: relative;
    }
    .hero-container { display: flex; align-items: center; justify-content: space-between; }

   /* 왼쪽 텍스트 영역 */
    .hero-text { flex: 1.1; z-index: 10; }
    .hero-text h1 { font-size: 44px; font-weight: 800; line-height: 1.35; color: #1a202c; margin-bottom: 25px; }
    .hero-text h1 span { color: #0066ff; }
    .hero-desc { font-size: 16px; color: #4a5568; line-height: 1.7; margin-bottom: 40px; max-width: 500px; word-break: keep-all; }

   /* [3. 검색바 디자인] */
    .hero-search-wrap {
        display: inline-flex;
        background: #ffffff;
        padding: 10px;
        border-radius: 50px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        align-items: center;
        height: 60px;
        box-sizing: border-box;
    }
    .search-field { display: flex; align-items: center; padding: 0 20px; }
    .search-field.divider { border-right: 1px solid #edf2f7; }
    .search-field i { color: #a0aec0; margin-right: 10px; }
    .search-field input { border: none; outline: none; width: 180px; font-size: 15px; }

   /* 수업 방법 드롭다운 */
    .method-select-container { position: relative; cursor: pointer; min-width: 180px; }
    .method-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 15px; color: #4a5568; }
    .method-dropdown { 
        position: absolute; top: 130%; left: 0; width: 100%; background: #fff; 
        border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
        list-style: none; padding: 10px 0; margin: 0; display: none; z-index: 100;
    }
    .method-dropdown li { padding: 12px 20px; font-size: 14px; transition: 0.2s; }
    .method-dropdown li:hover { background: #f0f7ff; color: #0066ff; }
    .method-select-container:hover .method-dropdown { display: block; }

    .btn-hero-search { 
        background: #10927d; color: #fff; border: none; padding: 0 35px; 
        height: 100%; border-radius: 40px; font-weight: 700; cursor: pointer;
    }

   /* [4. 과목 슬라이더 디자인] */
    .subject-slider-area { 
        margin-top: 20px; 
        max-width: 720px; 
    }
    .slider-bg-box {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.45); 
        padding: 8px 12px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        gap: 10px;
    }
    .track-window { overflow: hidden; flex: 1; }
    .subject-track { display: flex; gap: 8px; transition: transform 0.4s ease; width: max-content; }

  /* 개별 과목 버튼 */
    .subject-item { 
        display: flex; align-items: center; gap: 6px; background: #ffffff; 
        padding: 5px 14px; border-radius: 30px; cursor: pointer; white-space: nowrap;
        border: 1px solid #eee; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        transition: 0.2s; height: 32px; box-sizing: border-box;
    }
    .subject-item:hover { border-color: #0066ff; background: #fdfdff; transform: translateY(-1px); }
    .subject-item i { font-size: 12px; color: #555; } 
    .subject-item span { font-size: 12.5px; font-weight: 500; color: #444; }

  /* 화살표 버튼 */
    .nav-btn { 
        background: #ffffff; border: 1px solid #eee; width: 30px; height: 30px; 
        border-radius: 50%; cursor: pointer; display: flex; align-items: center; 
        justify-content: center; font-size: 10px; color: #888; flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    .nav-btn:hover { background: #f8f9fa; color: #333; }

  /* [5. 오른쪽 이미지 영역] */
    .hero-right { flex: 0.9; display: flex; justify-content: flex-end; position: relative; }
    .mask-frame {
        width: 520px; height: 480px;
        border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%; 
        overflow: hidden; border: 12px solid #ffffff;
        box-shadow: 0 25px 50px rgba(0,0,0,0.1); z-index: 2;
    }
    .mask-frame img { width: 100%; height: 100%; object-fit: cover; }
    .shape-bg { position: absolute; border-radius: 50%; z-index: 1; }
    .shape-orange { width: 120px; height: 120px; background: #ffbd59; top: -30px; left: 150px; opacity: 0.6; }
    .shape-blue { width: 220px; height: 220px; background: #357aff; bottom: -60px; right: -40px; opacity: 0.8; }

/* [에듀시즌 모바일 화살표 슬라이더 통합 교정] */
@media screen and (max-width: 768px) {
    /* 1. 기본 배경 및 틀 고정 */
    html, body { overflow-x: hidden !important; width: 100% !important; margin: 0; padding: 0; }
    .hero-wrapper { padding: 40px 0 60px !important; width: 100% !important; overflow: hidden; }
    .hero-container { 
        flex-direction: column !important; 
        padding: 0 20px !important;
        text-align: center !important;
    }

  /* 2. 텍스트 영역 */
    .hero-text { width: 100% !important; flex: none !important; }
    .hero-text h1 { font-size: 26px !important; margin-bottom: 15px !important; line-height: 1.3 !important; }
    .hero-desc { font-size: 14px !important; margin: 0 auto 30px !important; width: 100% !important; }

  /* 3. 검색바 (세로 배치) */
    .hero-search-wrap {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        width: 100% !important;
        border-radius: 15px !important;
        padding: 10px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
        box-sizing: border-box !important;
    }
    .search-field { 
        width: 100% !important; 
        border-right: none !important; 
        border-bottom: 1px solid #edf2f7; 
        padding: 15px 10px !important;
        box-sizing: border-box !important;
    }
    .search-field:last-of-type { border-bottom: none; }
    .search-field input { width: 100% !important; text-align: left; }
    .btn-hero-search { width: 100% !important; height: 50px !important; margin-top: 10px; border-radius: 10px !important; }

  /* 4. 과목 슬라이더: 모바일 화살표 기능 복구 (한 줄 슬라이드) */
    .subject-slider-area { width: 100% !important; margin-top: 25px !important; }
    .slider-bg-box { 
        display: flex !important; /* 화살표를 위해 다시 flex로 */
        align-items: center !important;
        background: rgba(255, 255, 255, 0.7) !important; 
        padding: 6px 10px !important;
        border-radius: 50px !important;
        gap: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.7) !important;
    }
    .nav-btn { 
        display: flex !important; /* 모바일 화살표 다시 표시 */
        width: 32px !important; 
        height: 32px !important; 
        flex-shrink: 0 !important; 
        font-size: 10px !important;
        background: #fff !important;
    }
    .track-window { overflow: hidden !important; flex: 1 !important; }
    .subject-track { 
        display: flex !important; 
        flex-wrap: nowrap !important; /* 줄바꿈 금지, 한 줄로 길게 */
        gap: 8px !important; 
        width: max-content !important; 
        transition: transform 0.4s ease !important;
    }
    .subject-item { 
        flex-shrink: 0 !important; /* 크기 줄어듦 방지 */
        height: 32px !important; 
        padding: 0 15px !important;
        font-size: 12px !important;
    }

  /* 5. 이미지 영역 */
    .hero-right { display: flex !important; width: 100% !important; justify-content: center !important; margin-top: 40px !important; }
    .mask-frame { width: 280px !important; height: 260px !important; border: 6px solid #fff !important; }
    .shape-orange, .shape-blue { display: none !important; }
}

   /* ===========================================
   메인페이지 히어로 끝
   =========================================== */

   /* ===========================================
   메인페이지 안전수업료 정책 시작
   =========================================== */
    .safety-section {
        /* 상하 간격을 140px로 대폭 키워 시원한 느낌을 줍니다 */
        padding: 140px 0; 
        background-color: #ffffff; /* 흰색 바탕 */
        text-align: center;
    }
    
    .safety-tagline {
        color: #10927d; /* 강조색을 검색 버튼과 통일 */
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: block;
    }

    .safety-section h2 {
        font-size: 40px;
        font-weight: 800;
        color: #1a202c;
        margin-bottom: 25px;
        letter-spacing: -0.5px;
    }

    .safety-section p.sub-text {
        font-size: 19px;
        color: #718096;
        margin-bottom: 80px; /* 제목과 카드 사이 간격 */
        line-height: 1.8;
        word-break: keep-all;
    }

    /* 카드 컨테이너 */
    .safety-card-wrap {
        display: flex;
        justify-content: center;
        gap: 40px; /* 카드 사이 간격 넓힘 */
        max-width: 1100px;
        margin: 0 auto;
    }

    /* 개별 카드 디자인 */
    .safety-card {
        flex: 1;
        padding: 50px 40px;
        border-radius: 24px;
        text-align: left;
        display: flex;
        flex-direction: column; /* 아이콘을 위로 배치하여 이미지-2와 유사하게 구성 */
        align-items: flex-start;
        gap: 25px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    /* 마우스 올렸을 때 효과 */
    .safety-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    }

    /* 왼쪽 카드 (민트/그린 톤) */
    .card-fee {
        background-color: #f6fcfb;
        border-color: #e6f4f1;
    }

    /* 오른쪽 카드 (블루 톤) */
    .card-escrow {
        background-color: #f8fbff;
        border-color: #ebf3ff;
    }

    /* 아이콘 박스 */
    .safety-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex-shrink: 0;
    }
    .fee-icon { background-color: #10927d; color: #fff; }
    .escrow-icon { background-color: #357aff; color: #fff; }

    /* 카드 텍스트 정보 */
    .card-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 15px;
    }
    .card-content p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.7;
        word-break: keep-all;
    }

   /* ===========================================
   메인페이지 안전수업료 정책 끝
   =========================================== */

   /* ===========================================
   메인페이지 과목 시작
   =========================================== */
    .popular-subjects {
        padding: 140px 0; 
        background-color: #f8fafc; 
        text-align: center;
    }

    .popular-subjects h2 {
        font-size: 40px;
        font-weight: 800;
        color: #1a202c;
        margin-bottom: 20px;
    }

    .popular-subjects p.sub-text {
        font-size: 18px;
        color: #718096;
        margin-bottom: 70px;
    }

    /* 과목 그리드 레이아웃 */
    .subject-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* 과목 카드 디자인 - 모든 요소를 중앙으로! */
    .subject-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid transparent;
        
        /* 중앙 정렬을 위한 핵심 코드 */
        display: flex;
        flex-direction: column;
        align-items: center;    /* 가로 중앙 정렬 */
        justify-content: center; /* 세로 중앙 정렬 */
        text-align: center;     /* 텍스트 중앙 정렬 */
    }

    .subject-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* 아이콘 박스 설정 */
    .icon-box {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        margin-bottom: 20px; /* 제목과의 간격 */
    }

    /* 이미지-3 기반 색상 유지 */
    .bg-math { background-color: #10927d; }
    .bg-lang { background-color: #ef4444; }
    .bg-science { background-color: #6366f1; }
    .bg-it { background-color: #8b5cf6; }
    .bg-music { background-color: #ec4899; }
    .bg-art { background-color: #f59e0b; }
    .bg-biz { background-color: #10b981; }

    .subject-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 8px;
    }

    .subject-card span.tutor-count {
        font-size: 15px;
        color: #94a3b8;
    }

    /* 8번째 카드: 전체 과목 보기 전용 디자인 */
    .card-view-all {
        background-color: #ffffff;
        border: 2px dashed #cbd5e1;
    }
    
    .card-view-all:hover {
        border-color: #10927d;
        background-color: #f0fdfa;
    }

    .card-view-all .view-all-icon {
        width: 50px;
        height: 50px;
        background: #f1f5f9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: #64748b;
        transition: 0.3s;
    }

    .card-view-all:hover .view-all-icon {
        background: #10927d;
        color: #fff;
    }

    .card-view-all span.view-text {
        font-size: 18px;
        font-weight: 700;
        color: #4a5568;
    }

    /* 반응형 조절 */
    @media (max-width: 1024px) {
        .subject-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
    }
    @media (max-width: 600px) {
        .subject-grid { grid-template-columns: 1fr; }
    }

   /* ===========================================
   메인페이지 과목 끝
   =========================================== */

   /* ===========================================
   메인페이지 튜터등록 유도 시작
   =========================================== */
    .tutor-banner {
        width: 100%;
        background: linear-gradient(135deg, #10927d 0%, #0c7a69 100%); /* 메인 컬러 그라데이션 */
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    /* 배경에 은은한 패턴 효과 (메인-4 느낌 재현) */
    .tutor-banner::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .tutor-banner .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

    /* 왼쪽 텍스트 영역 */
    .banner-text {
        flex: 1;
        color: #ffffff;
    }

    .banner-text h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .banner-text p {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    /* 버튼 디자인 */
    .btn-tutor-reg {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        color: #10927d;
        padding: 18px 35px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .btn-tutor-reg:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        background: #f8f9fa;
    }

    /* 오른쪽 이미지 영역 (새로운 이미지 배치) */
    .banner-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .circle-img-wrap {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 15px solid rgba(255, 255, 255, 0.15); /* 반투명 테두리 */
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

    .circle-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 반응형 조절 */
    @media (max-width: 1024px) {
        .tutor-banner .container { flex-direction: column; text-align: center; gap: 50px; }
        .banner-image { justify-content: center; }
        .circle-img-wrap { width: 300px; height: 300px; }
        .banner-text h2 { font-size: 32px; }
    }

   /* ===========================================
   메인페이지 튜터등록 유도 끝
   =========================================== */

   /* ===========================================
   메인페이지 튜터카드 시작
   =========================================== */
    .tutor-list-section { padding: 140px 0; background-color: #ffffff; text-align: center; }
    .tutor-list-section h2 { font-size: 40px; font-weight: 800; color: #1a202c; margin-bottom: 15px; }
    .tutor-list-section p.sub-text { font-size: 18px; color: #718096; margin-bottom: 70px; }

    /* 4열 그리드 레이아웃 */
    .tutor-grid { 
        display: grid; 
        grid-template-columns: repeat(4, 1fr); 
        gap: 25px; 
        max-width: 1200px; 
        margin: 0 auto; 
    }

    /* 튜터 카드 공통 스타일 */
    .tutor-card { 
        background: #fff; 
        border-radius: 20px; 
        border: 1px solid #edf2f7; 
        overflow: hidden; 
        text-align: left; 
        transition: all 0.3s ease; 
        display: flex; 
        flex-direction: column; 
        height: 100%; 
    }
    .tutor-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

    /* 이미지 및 뱃지 영역 */
    .tutor-img-box { position: relative; width: 100%; height: 200px; background: #f7fafc; }
    .tutor-img-box img { width: 100%; height: 100%; object-fit: cover; }
    
    .badge-container { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
    .badge-certified { background: #10927d; color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 10px; font-weight: 600; }
    .badge-level { color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 10px; font-weight: 700; text-transform: uppercase; }
    .badge-level.master { background: #f59e0b; }
    .badge-level.expert { background: #8b5cf6; }
    .badge-level.pro { background: #3b82f6; }
    .rating-box { background: rgba(0,0,0,0.6); color: #ffbd59; font-size: 11px; padding: 3px 8px; border-radius: 10px; display: flex; align-items: center; gap: 3px; }

    /* 카드 텍스트 정보 */
    .tutor-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
    
    /* 이름 옆 무료 박스 밀착 정렬 */
    .tutor-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
    .tutor-name-row h3 { font-size: 19px; font-weight: 800; color: #1a202c; margin: 0; }
    
    /* 가변형 무료 태그 */
    .tag-free { 
        display: inline-flex; 
        align-items: center; 
        gap: 4px; 
        color: #10927d; 
        border: 1px solid #10927d; 
        font-size: 11px; 
        padding: 2px 10px; 
        border-radius: 20px; 
        font-weight: 600; 
        background: #f0fdfa;
        white-space: nowrap; 
    }

    /* 과목 및 세부 전공 */
    .subject-wrapper { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
    .selected-subject { color: #10927d; font-size: 14px; font-weight: 700; }
    .selected-subject:not(:last-child)::after { content: "·"; margin-left: 5px; color: #cbd5e1; }
    
    .detail-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 15px; }
    .detail-tags span { background: #f8fafc; color: #64748b; font-size: 12px; padding: 2px 8px; border-radius: 6px; border: 1px solid #e2e8f0; }

    /* 통계 및 푸터 */
    .tutor-stats { display: flex; justify-content: space-between; font-size: 12px; color: #94a3b8; padding: 12px 0; border-top: 1px solid #f1f5f9; margin-top: auto; margin-bottom: 15px; }
    .tutor-stats span { display: flex; align-items: center; gap: 5px; }

    .tutor-footer { display: flex; align-items: center; justify-content: space-between; }
    .tutor-price { font-size: 18px; font-weight: 800; color: #1a202c; }
    .tutor-price span { font-size: 12px; font-weight: 400; color: #94a3b8; }
    .btn-profile { background: #10927d; color: #fff; padding: 7px 15px; border-radius: 8px; font-size: 12px; font-weight: 700; text-decoration: none; }

    /* 8번째 모든 튜터 보기 카드 */
    .card-more-tutors {
        background-color: #f8fafc;
        border: 2px dashed #cbd5e1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
    }
    .card-more-tutors:hover { border-color: #10927d; background-color: #f0fdfa; }
    .more-icon { width: 60px; height: 60px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #10927d; margin-bottom: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .more-text { font-size: 18px; font-weight: 800; color: #4a5568; }

    /* 반응형 */
    @media (max-width: 1100px) { .tutor-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; } }
    @media (max-width: 600px) { .tutor-grid { grid-template-columns: 1fr; } }

    .tutor-grid {
        display: grid;
        /* 기본: 모바일 1열 */
        grid-template-columns: repeat(1, 1fr); 
        gap: 20px;
        padding: 20px;
    }

    /* 태블릿 환경 (768px 이상): 2열 */
    @media (min-width: 768px) {
        .tutor-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* PC 환경 (1024px 이상): 4열 */
    @media (min-width: 1024px) {
        .tutor-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* 튜터 카드 아이콘 정렬 보강 */
     .card-item-fixed i {
      vertical-align: middle;
      margin-right: 4px;
    }

    /* 수업방식 아이콘(이모지) 투명도 조절 */
     .card-item-fixed span[style*="opacity:0.2"] {
       filter: grayscale(1);
    }

   /* ===========================================
   메인페이지 튜터카드 끝
   =========================================== */

   /* ===========================================
   메인페이지 수업방식 안내 시작
   =========================================== */
    .how-it-works {
        padding: 140px 0;
        background-color: #f8f9fa; /* 연한 회색 배경 */
        text-align: center;
    }

    .how-it-works h2 { font-size: 40px; font-weight: 800; color: #1a202c; margin-bottom: 15px; }
    .how-it-works p.sub-title { font-size: 18px; color: #718096; margin-bottom: 80px; }

    /* 격자 레이아웃 */
    .work-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3열 구성 */
        max-width: 1200px;
        margin: 0 auto;
        background: #fff; /* 내부 카드 영역은 흰색으로 대비 */
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border-radius: 30px;
        overflow: hidden;
    }

    .work-item {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* 이미지 영역 */
    .work-img {
        width: 100%;
        height: 350px;
        overflow: hidden;
    }
    .work-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .work-item:hover .work-img img {
        transform: scale(1.1);
    }

    /* 텍스트 영역 */
    .work-text {
        padding: 40px;
        text-align: left;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .work-text h3 {
        font-size: 24px;
        font-weight: 800;
        color: #1a202c;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .work-text h3::after {
        content: "?";
        color: #10927d;
    }

    .work-text p {
        font-size: 16px;
        color: #4a5568;
        line-height: 1.7;
        word-break: keep-all;
    }

    /* 반응형 조절 */
    @media (max-width: 1024px) {
        .work-grid { grid-template-columns: 1fr; max-width: 600px; }
        .work-img { height: 300px; }
    }

   /* ===========================================
   메인페이지 수업가능지역 안내 시작
   =========================================== */
    .service-area-section { padding: 80px 0; background-color: #ffffff; }
    .service-area-section .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }
    .service-area-section h2 { font-size: 32px; font-weight: 800; color: #1a202c; margin-bottom: 15px; }
    .service-area-section p.sub-title { font-size: 16px; color: #718096; margin-bottom: 60px; line-height: 1.6; }

    /* 데스크탑: 중앙 아이콘을 기준으로 좌우 1:1:1 비율 배분 */
    .area-flex-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    /* 좌측/우측 그룹은 동일한 비율(1)을 가짐 */
    .area-side {
        flex: 1; 
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    /* 지역 박스 */
    .area-box { width: 100%; }
    .area-num { font-size: 17px; font-weight: 700; color: #10927d; margin-bottom: 8px; display: block; }
    .area-desc { font-size: 15px; color: #718096; line-height: 1.6; word-break: keep-all; }

    /* 텍스트 정렬: 중앙 아이콘을 향하도록 설정 */
    .text-right { text-align: right; } 
    .text-left { text-align: left; }

    /* 중앙 아이콘 영역 */
    .center-visual {
        flex: 0 0 auto; /* 강제 폭 고정 없이 내용물만큼만 차지 */
        padding: 0 20px;
    }
    .center-target {
        width: 100px; height: 100px; background: #fff; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        border: 2px solid #10927d; box-shadow: 0 10px 20px rgba(16, 146, 125, 0.1);
    }
    .center-target i { font-size: 40px; color: #10927d; }

    /* [중요] 모바일 우선 대응: 991px 이하에서 한 줄로 자동 전환 */
    @media (max-width: 991px) {
        .area-flex-wrapper { flex-direction: column; gap: 40px; }
        .center-visual { order: -1; margin-bottom: 10px; } /* 아이콘을 최상단으로 */
        .area-side { gap: 30px; }
        .area-box { text-align: center !important; } /* 모바일은 가독성을 위해 중앙 정렬 */
        .service-area-section h2 { font-size: 28px; }
    }

   /* ===========================================
   메인페이지 수업가능지역 안내 끝
   =========================================== */

   /* ===========================================
   메인페이지 회사소개 시작
   =========================================== */
    .company-intro-section {
        padding: 100px 0;
        background-color: #FDF2F2; /* 메인-8의 연한 핑크 배경색 적용 */
    }

    .intro-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 0 20px;
    }

    /* 이미지 영역 */
    .intro-img-box {
        flex: 1;
        max-width: 450px;
    }
    .intro-img-box img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        object-fit: cover;
    }

    /* 텍스트 영역 */
    .intro-text-box {
        flex: 1.2;
        text-align: left;
    }

    .intro-text-box h2 {
        font-size: 42px;
        font-weight: 800;
        color: #1a202c;
        margin-bottom: 20px;
    }

    .intro-text-box .company-sub {
        font-size: 18px;
        color: #4a5568;
        margin-bottom: 40px;
        line-height: 1.6;
        word-break: keep-all;
    }

    /* 정보 그리드 (2열 배치) */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 30px;
    }

    .info-item {
        display: flex;
        font-size: 15px;
        line-height: 1.5;
    }

    .info-label {
        font-weight: 800;
        color: #2d3748;
        width: 100px;
        flex-shrink: 0;
    }

    .info-value {
        color: #4a5568;
        font-weight: 500;
    }

    /* 모바일 우선 대응 */
    @media (max-width: 991px) {
        .intro-container { flex-direction: column; text-align: center; }
        .intro-text-box { text-align: center; }
        .info-grid { grid-template-columns: 1fr; gap: 10px; }
        .info-label { width: 120px; text-align: left; }
        .intro-img-box { max-width: 100%; order: -1; } /* 모바일에서 이미지를 위로 */
        .intro-text-box h2 { font-size: 32px; }
    }

   /* ===========================================
   메인페이지 회사소개 끝
   =========================================== */

   /* ===========================================
   메인페이지 자주묻는질문 시작
   =========================================== */
    .support-section { padding: 100px 0; background-color: #ffffff; }
    .support-container { 
        max-width: 1200px; margin: 0 auto; display: flex; gap: 50px; padding: 0 20px; 
    }

    /* FAQ 영역 */
    .faq-side { flex: 1.5; text-align: left; }
    .faq-side h2 { font-size: 32px; font-weight: 800; color: #1a202c; margin-bottom: 40px; }
    
    .faq-item { border-bottom: 1px solid #edf2f7; padding: 20px 0; cursor: pointer; }
    .faq-question { 
        display: flex; justify-content: space-between; align-items: center;
        font-size: 18px; font-weight: 700; color: #2d3748; 
    }
    .faq-question i { color: #10927d; transition: 0.3s; }
    .faq-answer { 
        display: none; padding-top: 15px; color: #718096; line-height: 1.6; font-size: 15px; 
    }

    /* AI 상담 창 영역 */
    .ai-side { 
        flex: 1; background: #f8fafc; border-radius: 30px; padding: 40px; 
        border: 1px solid #e2e8f0; position: sticky; top: 100px; height: fit-content;
    }
    .ai-badge { 
        background: #10927d; color: #fff; padding: 5px 12px; border-radius: 20px; 
        font-size: 12px; font-weight: 700; margin-bottom: 20px; display: inline-block;
    }
    .ai-side h3 { font-size: 24px; font-weight: 800; color: #1a202c; margin-bottom: 15px; }
    .ai-side p { color: #718096; margin-bottom: 30px; font-size: 15px; line-height: 1.6; }

    .ai-input-box { 
        background: #fff; border: 1.5px solid #edf2f7; border-radius: 15px; 
        padding: 15px; display: flex; flex-direction: column; gap: 10px;
    }
    .ai-input-box textarea { 
        border: none; outline: none; resize: none; width: 100%; height: 80px; 
        font-family: inherit; font-size: 14px;
    }
    .btn-ai-ask { 
        background: #10927d; color: #fff; border: none; padding: 12px; 
        border-radius: 10px; font-weight: 700; cursor: pointer; transition: 0.3s;
    }
    .btn-ai-ask:hover { background: #0d7a68; }

    @media (max-width: 991px) {
        .support-container { flex-direction: column; }
        .ai-side { position: static; }
    }


   /* ===========================================
      메인페이지 자주묻는질문 끝
      =========================================== */

/* ==========================================================
   에듀시즌 튜터 등록 프로세스 공통 스타일
   ========================================================== */
/* 전체 배경 및 컨테이너 */
.reg-body { 
    background: #f8fafc; 
    padding: 60px 0; 
    min-height: 800px; 
}

.reg-container { 
    max-width: 800px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 50px; 
    border-radius: 30px; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.05); 
}

/* 상단 단계 표시 (Step Bar) */
.step-container { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 50px; 
    position: relative; 
}

.step-container::before { 
    content: ""; 
    position: absolute; 
    top: 20px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background: #e2e8f0; 
    z-index: 1; 
}

.step-item { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    flex: 1; 
}

.step-dot { 
    width: 40px; 
    height: 40px; 
    background: #fff; 
    border: 2px solid #e2e8f0; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 10px; 
    font-weight: 800; 
    color: #a0aec0; 
    transition: 0.3s; 
}

.step-text { 
    font-size: 13px; 
    font-weight: 700; 
    color: #a0aec0; 
}

.step-item.active .step-dot { 
    background: #10927d; 
    border-color: #10927d; 
    color: #fff; 
    box-shadow: 0 5px 15px rgba(16, 146, 125, 0.3); 
}

.step-item.active .step-text { 
    color: #10927d; 
}

/* 안내 문구 영역 */
.intro-area { text-align: center; margin-bottom: 40px; }
.intro-area h2 { font-size: 26px; font-weight: 800; color: #1a202c; margin-bottom: 15px; }
.intro-area p { font-size: 15px; color: #718096; line-height: 1.6; }
.intro-area .highlight { color: #10927d; font-weight: 700; }

/* 선택 그리드 시스템 */
.section-h3 { 
    font-size: 19px; 
    font-weight: 700; 
    margin: 40px 0 20px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: #2d3748; 
}

.choice-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 12px; 
}

.choice-item { 
    position: relative; 
    border: 2px solid #f1f5f9; 
    padding: 18px 10px; 
    border-radius: 15px; 
    text-align: center; 
    cursor: pointer; 
    transition: 0.2s; 
    background: #fff; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px;
}

.choice-item input[type="checkbox"] { display: none; }

.check-icon { 
    width: 20px; 
    height: 20px; 
    border: 2px solid #e2e8f0; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 10px; 
    color: transparent; 
}

.choice-item:hover { border-color: #10927d; }
.choice-item.active { border-color: #10927d; background: #f0fdfa; }
.choice-item.active .check-icon { background: #10927d; border-color: #10927d; color: #fff; }
.choice-item.active span { color: #10927d; font-weight: 700; }

/* 검색 및 태그 영역 */
.search-area { 
    margin-top: 30px; 
    background: #f8fafc; 
    padding: 25px; 
    border-radius: 20px; 
    border: 1px solid #e2e8f0; 
}

.search-box { display: flex; gap: 8px; margin-top: 10px; }

.search-input { 
    flex: 1; 
    padding: 12px 15px; 
    border: 1px solid #cbd5e0; 
    border-radius: 10px; 
    font-size: 15px; 
    outline: none; 
}

.btn-search { 
    padding: 0 20px; 
    background: #4a5568; 
    color: #fff; 
    border: none; 
    border-radius: 10px; 
    cursor: pointer; 
    font-weight: 700; 
    transition: 0.2s; 
}

.btn-search:hover { background: #2d3748; }

.tag-container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-top: 12px; 
}

.req-tag { 
    background: #fff; 
    color: #10927d; 
    padding: 6px 14px; 
    border-radius: 50px; 
    font-size: 13px; 
    font-weight: 700; 
    border: 1px solid #10927d; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}

/* 다음 버튼 */
.btn-next { 
    width: 100%; 
    padding: 22px; 
    background: #10927d; 
    color: #fff; 
    border: none; 
    border-radius: 15px; 
    font-size: 18px; 
    font-weight: 800; 
    cursor: pointer; 
    margin-top: 40px; 
    transition: 0.3s; 
}

.btn-next:hover { 
    background: #0d7a68; 
    transform: translateY(-2px); 
}

/* ==========================================================
   에듀시즌 튜터 등록 프로세스 공통 스타일
   ========================================================== */


/* ==========================================================
   에듀시즌 튜터 등록 프로세스 공통 스타일
   ========================================================== */


/* ==========================================================
   에듀시즌 튜터 등록 프로세스 공통 스타일
   ========================================================== */


/* ==========================================================
   에듀시즌 튜터 등록 프로세스 공통 스타일
   ========================================================== */


/* ==========================================================
   에듀시즌 튜터 등록 프로세스 공통 스타일
   ========================================================== */



/* ===========================================
   튜터 프로필 시작
   =========================================== */
    /* 1. 기본 레이아웃 및 폭 고정 (1200px 안으로 가두기) */
    .detail-wrapper { background: #f8fafc; padding: 20px 0; width: 100%; }
    .detail-container { 
        max-width: 1200px; 
        margin: 0 auto; 
        display: flex; 
        flex-direction: column; 
        gap: 30px; 
        padding: 0 15px; 
        box-sizing: border-box; /* 패딩이 폭에 영향을 주지 않도록 설정 */
    }
    
    @media (min-width: 1024px) {
        .detail-wrapper { padding: 60px 0; }
        .detail-container { 
            flex-direction: row; 
            align-items: flex-start; 
            justify-content: space-between; /* 좌우 끝으로 명확히 배치 */
        }
        
        /* [수정] 좌측 본문: 사이드바 300px과 간격 30px을 뺀 나머지 폭 자동 계산 */
        .left-content { 
            width: calc(100% - 330px); 
            flex-shrink: 0;
            min-width: 0;
        }
        
        /* [수정] 우측 사이드바: 300px로 고정 및 축소 */
        .right-sidebar { 
            width: 300px; 
            flex-shrink: 0; 
            position: sticky; 
            top: 100px; 
            height: fit-content; 
        }
    }

    /* 2. 공통 카드 박스 디자인 */
    .card-box { background: #fff; border-radius: 25px; padding: 35px 25px; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #edf2f7; }
    .main-title { font-size: 26px; font-weight: 800; line-height: 1.4; color: #1a202c; margin-bottom: 10px; word-break: keep-all; }
    .section-head { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: #2d3748; margin-bottom: 25px; }
    .section-head i { color: #10927d; }

    /* 3. 수업 상세 정보 가변 3단 그리드 */
    .info-grid-3col {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
        margin-bottom: 25px;
        align-items: flex-start;
    }

    @media (min-width: 1024px) {
        .info-grid-3col { grid-template-columns: repeat(3, 1fr); }
    }

    /* 개별 가변 박스 */
    .info-item-wrapper {
        background: #ffffff; border: 1px solid #edf2f7; border-radius: 15px;
        padding: 22px; display: flex; flex-direction: column; gap: 15px;
        height: auto; box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }

    .info-item-wrapper label { font-size: 16px; font-weight: 800; color: #2d3748; display: flex; align-items: center; gap: 8px; }
    .info-item-wrapper label i { color: #10927d; font-size: 18px; }

    /* 4. 캡슐형 및 요금 태그 디자인 */
    .info-tag-flex { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
    .round-capsule-tag {
        display: inline-block; padding: 6px 16px; background: #f1f5f9; color: #10927d;
        font-weight: 700; font-size: 13px; border-radius: 50px; border: 1px solid #e2e8f0;
    }
    
    .tag-container { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; }

    .price-tag-active {
        padding: 12px 15px; background: #f0fdfa; color: #10927d; border: 1.5px solid #10927d;
        border-radius: 50px; font-weight: 800; font-size: 14px; text-align: center; flex: 1; min-width: 140px;
    }

    .price-tag-inactive {
        padding: 12px 15px; background: #f9fafb; color: #cbd5e0; border: 1.5px solid #e2e8f0;
        border-radius: 50px; font-weight: 600; font-size: 14px; text-align: center; text-decoration: line-through; opacity: 0.7; flex: 1; min-width: 140px;
    }

    /* 5. 패키지 및 프로필 이미지 조정 */
    .integrated-pkg-area { background: #f8fafc; border-radius: 20px; padding: 20px; border: 1px solid #f1f5f9; margin-top: 5px; }
    .pkg-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #edf2f7; }
    .pkg-row:last-child { border-bottom: none; }
    .dc-label { background: #fff5f5; color: #e53e3e; font-size: 11px; padding: 2px 6px; border-radius: 4px; font-weight: bold; }

    .profile-card { background: #fff; border-radius: 25px; padding: 40px 20px; text-align: center; border: 1px solid #edf2f7; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .profile-img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 5px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 20px; }
    .btn-apply { display: block; background: #10927d; color: #fff; padding: 18px; border-radius: 15px; text-decoration: none; font-weight: 800; font-size: 18px; margin-top: 25px; }

/* 후기 아이템 숨김 처리를 위한 클래스 */
.review-item.hidden {
    display: none;
}

/* 더보기 버튼 디자인 */
.btn-more-reviews {
    display: block;
    width: 100%;
    padding: 18px;
    margin-top: 20px;
    background: #fff;
    color: #718096;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-more-reviews:hover {
    background: #f8fafc;
    color: #10927d;
    border-color: #10927d;
}

.btn-more-reviews i {
    margin-left: 8px;
}

/* ===========================================
   튜터 프로필 끝
   =========================================== */

/* ===========================================
   푸터 시작
   =========================================== */
    /* 1. 푸터 기본 스타일 (모바일 기준) */
    .footer-wrapper {
        background: #1a202c;
        color: #fff;
        padding: 60px 0 30px;
        width: 100%;
        border-top: 1px solid #2d3748;
    }

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

    /* 2. 푸터 그리드: 모바일은 1열, 태블릿은 2열, PC는 4열 */
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr; /* 모바일: 기본 1줄 */
        gap: 40px;
        margin-bottom: 50px;
    }

    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr; /* 태블릿: 2줄 */
        }
    }

    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* PC: 원래 원하셨던 4줄 비율 */
            gap: 60px;
        }
    }

    /* 3. 하단 카피라이트 영역 (모바일은 중앙, PC는 양쪽 정렬) */
    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding-top: 30px;
        display: flex;
        flex-direction: column; /* 모바일: 위아래 배치 */
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row; /* PC: 좌우 배치 */
            justify-content: space-between;
            text-align: left;
        }
    }

    /* 기타 텍스트 스타일 */
    .footer-section h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; color: #a0aec0; font-size: 14px; }
    .footer-social { display: flex; gap: 20px; }
    .footer-social i { color: #fff; cursor: pointer; font-size: 18px; }

/* ===========================================
   푸터 끝
   =========================================== */