/* Material Icons 폰트 */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* 진로역량진단검사 페이지 스타일 */
.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 히어로 섹션 */
.career-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 소개 섹션 */
.career-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* 대상 섹션 */
.target-section {
    margin-bottom: 60px;
    text-align: center;
}

.target-section h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.target-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
}

.target-item .material-icons {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 20px;
}

.target-item h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.target-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.target-item ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 17px;
}

.target-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* 검사 종류 섹션 */
.tests-section {
    margin-bottom: 60px;
    text-align: center;
}

.tests-section h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.test-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.test-item:hover {
    transform: translateY(-5px);
}

.test-item img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.test-item h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.test-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA 섹션 */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 15px;
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2c3e50;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button .material-icons {
    font-size: 1.2em;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .target-grid,
    .test-grid {
        grid-template-columns: 1fr;
    }

    .target-item,
    .test-item {
        padding: 25px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

/* ==========================================================================
   1. 애니메이션
   ========================================================================== */
@keyframes fade-in { from { opacity: 0; } }
@keyframes fade-out { to { opacity: 0; } }
@keyframes slide-from-right { from { transform: translateX(100%); } }
@keyframes slide-to-left { to { transform: translateX(-100%); } }
::view-transition-old(root) { animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both fade-out, 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-left; }
::view-transition-new(root) { animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both fade-in, 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-right; }

/* ==========================================================================
   2. 레이아웃
   ========================================================================== */
.content_wrap { padding: 50px 0; background-color: #f8f9fa; }
.inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.test_container { max-width: 800px; margin: 0 auto; }

/* ==========================================================================
   3. 타이포그래피
   ========================================================================== */
.main_title { font-size: 28px; font-weight: 700; color: #333; margin-bottom: 15px; }
.sub_text { color: #666; font-size: 16px; line-height: 1.6; }

/* ==========================================================================
   4. 폼 요소
   ========================================================================== */
.info_form_box { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.form_group { margin-bottom: 20px; }
.form_row { display: flex; margin: 0 -10px; margin-bottom: 20px; }
.col_4 { flex: 0 0 33.333333%; padding: 0 10px; }
.form_label { display: block; margin-bottom: 8px; font-weight: 500; color: #333; }
.form_label i { margin-right: 5px; color: #4361ee; }
.form_input, .form_select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 15px; transition: all 0.3s; }
.form_input:focus, .form_select:focus { border-color: #4361ee; box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1); outline: none; }

/* ==========================================================================
   5. 버튼
   ========================================================================== */
.btn_wrap { text-align: center; margin-top: 30px; }
.btn_primary { background: #4361ee; color: #fff; border: none; padding: 15px 40px; font-size: 16px; font-weight: 500; border-radius: 5px; cursor: pointer; transition: all 0.3s; }
.btn_primary:hover { background: #3651d1; transform: translateY(-2px); }
.btn_primary i { margin-left: 8px; }

/* ==========================================================================
   6. 프로그레스 바
   ========================================================================== */
.progress_bar { margin-bottom: 30px; }
.progress { height: 8px; background-color: #e9ecef; border-radius: 4px; margin-bottom: 10px; }
.progress-bar { background-color: #4361ee; border-radius: 4px; }
.progress_text { font-size: 14px; color: #666; text-align: center; }

/* ==========================================================================
   7. 슬라이더
   ========================================================================== */
.slick-prev, .slick-next { width: 40px; height: 40px; z-index: 1; }
.slick-prev { left: -50px; }
.slick-next { right: -50px; }
.slick-dots { bottom: -40px; }
.slick-dots li button:before { font-size: 12px; }
.slider-page { padding: 20px; }

/* ==========================================================================
   8. 질문 카드
   ========================================================================== */
.selected-question-card { background-color: #f8f9fa; border-left: 4px solid #0d6efd; margin-bottom: 15px; }
.question-number { font-size: 12px; color: #fff; font-weight: bold; }
.remove-question { color: #dc3545; cursor: pointer; transition: all 0.2s; }
.remove-question:hover { transform: scale(1.1); }

/* ==========================================================================
   9. 센터장 프로필
   ========================================================================== */
.director_profile { display: flex; margin: 2rem auto; background: #ffffff; padding: 3rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; max-width: 1200px; }
.director_profile:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.profile_img { flex: 0 0 300px; margin-right: 3rem; position: relative; }
.profile_img::after { content: ''; position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; background: #007bff; opacity: 0.1; border-radius: 10px; z-index: 1; }
.profile_img img { width: 100%; border-radius: 10px; position: relative; z-index: 2; transition: transform 0.3s ease; }
.profile_img img:hover { transform: scale(1.02); }
.profile_info { flex: 1; padding: 1rem 0; }
.profile_info h3 { font-size: 2.5rem; margin-bottom: 1rem; color: #2c3e50; font-weight: 700; }
.position { font-size: 1.5rem; color: #007bff; margin-bottom: 0.5rem; font-weight: 500; }
.sub_position { font-size: 1.2rem; color: #666; margin-bottom: 2rem; position: relative; padding-bottom: 1rem; }
.sub_position::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: #007bff; }

/* ==========================================================================
   10. 전문분야
   ========================================================================== */
.expertise { margin-top: 2rem; background: #f8f9fa; padding: 1.5rem; border-radius: 15px; }
.expertise h4 { font-size: 1.3rem; color: #2c3e50; margin-bottom: 1rem; font-weight: 600; }
.expertise ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.expertise ul li { background: linear-gradient(135deg, #007bff, #0056b3); color: #fff; padding: 8px 20px; border-radius: 25px; font-size: 0.9rem; transition: all 0.3s ease; }
.expertise ul li:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,123,255,0.2); }

/* ==========================================================================
   11. 경력 및 활동
   ========================================================================== */
.director_career, .director_activities { margin: 4rem auto; max-width: 1000px; position: relative; }
.director_career h4, .director_activities h4 { font-size: 2.2rem; color: #2c3e50; margin-bottom: 3rem; font-weight: 700; display: inline-block; }
.director_career h4::after, .director_activities h4::after { content: ''; display: block; width: 100%; height: 4px; background: linear-gradient(90deg, #007bff, transparent); margin-top: 0.5rem; }

.career_list { list-style: none; padding: 0; margin: 0; position: relative; }
.career_list::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, #007bff 0%, #007bff 100%); background-size: 1px 8px; }
.career_list li { position: relative; padding: 0 0 2rem 2rem; color: #555; line-height: 1.6; font-size:18px;}
.career_list li:last-child { padding-bottom: 0; }
.career_list li::before { content: ''; position: absolute; left: -4px; top: 0.5rem; width: 9px; height: 9px; background: #fff; border: 2px solid #007bff; border-radius: 50%; transition: all 0.3s ease; }
.career_list li:hover::before { background: #007bff; transform: scale(1.2); }

.activity_item { margin-bottom: 3rem; position: relative; }
.activity_item:last-child { margin-bottom: 0; }
.activity_item h5 { font-size: 1.4rem; color: #2c3e50; margin-bottom: 1.5rem; font-weight: 600; display: flex; align-items: center; }
.activity_item h5::before { content: ''; width: 20px; height: 2px; background: #007bff; margin-right: 1rem; transition: width 0.3s ease; }
.activity_item:hover h5::before { width: 40px; }
.activity_item ul { list-style: none; padding-left: 2.5rem; margin: 0; }
.activity_item ul li { position: relative; margin-bottom: 1rem; color: #555; line-height: 1.8; font-size:18px;}
.activity_item ul li::before { content: '—'; position: absolute; left: -1.5rem; color: #007bff; font-weight: 300; }

/* ==========================================================================
   12. 비디오 섹션
   ========================================================================== */
.director_video { margin: 5rem auto; max-width: 1000px; }
.video_container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video_container::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 1px solid rgba(0,123,255,0.2); pointer-events: none; }
.video_container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* 인트로 페이지 스타일 */
.intro-header {
    text-align: center;
    padding: 50px 0;
    background: #f8f9fa;
    margin-bottom: 40px;
}

.intro-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.intro-header .subtitle {
    font-size: 1.2em;
    color: #666;
}

.intro-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.dream-craft-section {
    text-align: center;
    padding: 40px 0;
    background: #f1f5f9;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.programs-grid {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.program-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.program-card h4 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefits-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    margin: 50px 0;
    text-align: center;
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.video-section {
    padding: 50px 0;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 30px auto;
}

.video-placeholder {
    background: #f8f9fa;
    padding: 120px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-placeholder:hover {
    background: #e9ecef;
}

.video-placeholder i {
    font-size: 4em;
    color: #3498db;
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .program-cards {
        grid-template-columns: 1fr;
    }

    .banner-content h2 {
        font-size: 2em;
    }

    .intro-header h1 {
        font-size: 2em;
    }
}

/* ==========================================================================
   13. 서명
   ========================================================================== */
.sign { text-align: right; font-size: 18px; margin-top: 30px; }
.sign .name { font-weight: bold; margin-left: 10px; }

/* ==========================================================================
   14. 반응형
   ========================================================================== */
@media (max-width: 768px) {
    .form_row { flex-direction: column; }
    .col_4 { width: 100%; padding: 0; margin-bottom: 20px; }
    .info_form_box { padding: 20px; }
    .row-cols-md-5 > * { width: 50%; }
    .slick-prev { left: -20px; }
    .slick-next { right: -20px; }
    .director_profile { flex-direction: column; padding: 2rem; }
    .profile_img { flex: none; margin-right: 0; margin-bottom: 2rem; max-width: 250px; margin: 0 auto 2rem; }
    .profile_info h3 { font-size: 2rem; text-align: center; }
    .position, .sub_position { text-align: center; }
    .sub_position::after { left: 50%; transform: translateX(-50%); }
    .expertise { text-align: center; }
    .expertise ul { justify-content: center; }
    .director_career, .director_activities { padding: 1.5rem; }
    .director_career h4, .director_activities h4 { font-size: 1.5rem; text-align: center; }
    .director_career h4::after, .director_activities h4::after { left: 50%; transform: translateX(-50%); }
    .career_list li { padding: 1rem 1rem 1rem 1.8rem; }
    .activity_item { padding: 1.2rem; }
    .activity_item h5 { font-size: 1.2rem; text-align: center; }
}

@media (max-width: 576px) {
    .row-cols-md-5 > * { width: 100%; }
    .director_profile { padding: 1.5rem; }
    .profile_img { max-width: 200px; }
    .profile_info h3 { font-size: 1.8rem; }
    .position { font-size: 1.3rem; }
    .sub_position { font-size: 1.1rem; }
    .career_list li { font-size: 0.9rem; }
    .activity_item ul li { font-size: 0.9rem; }
    .video-container { border-radius: 15px; }
}

/* 인트로 페이지 새 스타일 */
.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 120px 0;
    margin-bottom: 80px;
    border-radius: 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5em;
    opacity: 0.9;
    font-weight: 300;
}

/* 인트로 섹션 */
.intro-section {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 80px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.8em;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-content p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
}

/* 특징 섹션 */
.feature-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* 프로그램 섹션 */
.programs-section {
    padding: 80px 0;
}

.programs-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 50px;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.program-content p {
    color: #666;
    line-height: 1.6;
}

/* 비디오 섹션 */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 80px;
}

.video-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-placeholder:hover {
    background: #dee2e6;
}

.video-placeholder .material-icons {
    font-size: 4em;
    color: #3498db;
    margin-bottom: 20px;
}

/* CTA 섹션 */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .section-content h2 {
        font-size: 2em;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .program-list {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

/* Member page styles */
.member_list {
    width: 100%;
    padding: 20px;
}

.member_ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.member_info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    height: auto;
    min-height: 200px;
}

.mi_area {
    position: relative;
}

.avatar-icon {
    text-align: center;
    margin-bottom: 15px;
}

.avatar-icon i {
    font-size: 60px;
    color: #666;
}

.profile_content {
    margin-top: 15px;
}

.basic_info {
    text-align: center;
    margin-bottom: 20px;
}

.basic_info .name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.basic_info .specialty {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    word-break: keep-all;
    line-height: 1.4;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_info p {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0;
}

.contact_info i {
    color: #666;
}

.expandable {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    position: relative;
}

.expanded .expandable {
    max-height: 1000px;
    padding: 20px 0;
}

.profile_detail .section { 
    margin-bottom: 20px; 
}

.profile_detail h3 { 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: #333; 
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f0f0f0;
}

.profile_detail ul { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.profile_detail ul li { 
    margin-bottom: 8px; 
    color: #666;
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.profile_detail ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}

.expand-btn-wrapper {
    text-align: center;
    margin-top: 15px;
}

.expand-btn {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: #f0f0f0;
}

.expand-btn span {
    font-size: 0.9rem;
    color: #666;
}

.expand-btn i {
    font-size: 0.9rem;
    color: #666;
    transition: transform 0.3s ease;
}

.member_info.expanded .expand-btn i {
    transform: rotate(180deg);
}

/* 반응형 스타일 */
@media screen and (max-width: 1200px) {
    .member_ul {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .member_list {
        padding: 10px;
    }
    .member_ul {
        grid-template-columns: 1fr;
    }
    .member_info {
        padding: 15px;
    }
    .basic_info .name {
        font-size: 1.3rem;
    }
    .basic_info .specialty {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .member_list {
        padding: 5px;
    }
    .avatar-icon i {
        font-size: 50px;
    }
    .basic_info .name {
        font-size: 1.2rem;
    }
    .contact_info p {
        font-size: 0.85rem;
    }
}

/* Dream Craft About Page Styles */
.content_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.txtCon {
    width: 100%;
}

.sub_title {
    text-align: center;
    margin-bottom: 50px;
}

.sub_title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub_title p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    word-break: keep-all;
}

.content_area {
    margin-top: 40px;
}

.header-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2253b8;
    line-height: 1.6;
    margin-bottom: 50px;
    word-break: keep-all;
}

.goals-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.goals-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.goals-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.goals-section li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #2253b8;
    border-radius: 50%;
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    .content_wrap {
        padding: 40px 15px;
    }

    .sub_title h1 {
        font-size: 2rem;
    }

    .sub_title p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .title {
        font-size: 1.3rem;
        padding: 0 15px;
    }

    .goals-section {
        padding: 30px 20px;
    }

    .goals-section h2 {
        font-size: 1.5rem;
    }

    .goals-section li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .content_wrap {
        padding: 30px 15px;
    }

    .sub_title h1 {
        font-size: 1.8rem;
    }

    .title {
        font-size: 1.1rem;
    }

    .goals-section {
        padding: 25px 15px;
    }

    .goals-section h2 {
        font-size: 1.3rem;
    }
}

.digital_experience {
    padding: 40px 20px;
}

.digital_experience .process_wrap {
    margin-bottom: 60px;
}

.digital_experience .process_steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.digital_experience .step {
    text-align: center;
    padding: 20px;
}

.digital_experience .step_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 40px;
}

.digital_experience .step_icon.orange { background-color: #FF7F27; }
.digital_experience .step_icon.purple { background-color: #8B5CF6; }
.digital_experience .step_icon.blue { background-color: #3B82F6; }

.digital_experience .step_arrow {
    font-size: 30px;
    margin: 0 30px;
    color: #666;
}

.digital_experience .step_label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.digital_experience .step_text {
    color: #666;
    line-height: 1.4;
}

.digital_experience .notice_text {
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-size: 14px;
}

.digital_experience .info_wrap {
    margin: 60px 0;
}

.digital_experience .program_info {
    background-color: #F3F4F6;
    padding: 40px;
    border-radius: 15px;
}

.digital_experience .info_title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.digital_experience .info_icon {
    width: 50px;
    height: 50px;
    background-color: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.digital_experience .info_title h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.digital_experience .info_text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
    font-size: 16px;
}

.digital_experience .developer_wrap {
    margin-top: 60px;
}
.digital_experience .developer_wrap .dev_title{
    padding-bottom: 20px;
}
.digital_experience .developer_wrap .dev_title h2{
    display: block;
    font-size: 25px;
    padding-bottom: 10px;
}
.digital_experience .developer_wrap .dev_title p{
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #868686;
}

.digital_experience .developer_types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.digital_experience .type_card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.digital_experience .type_card:hover {
    transform: translateY(-5px);
}

.digital_experience .type_card:hover {
    border: 2px solid #3B82F6;
}

.digital_experience .card_icon {
    width: 60px;
    height: 60px;
    background-color: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.digital_experience .type_card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.digital_experience .type_card p {
    color: #666;
    line-height: 1.5;
    font-size: 15px;
}

@media screen and (max-width: 768px) {
    .digital_experience .process_steps {
        flex-direction: column;
    }
    
    .digital_experience .step_arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }
    
    .digital_experience .developer_types {
        grid-template-columns: 1fr;
    }
}
.digital_experience .program_info {
    background-color: #F3F4F6;
    padding: 40px;
    border-radius: 15px;
}

.digital_experience .info_box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.digital_experience .info_img {
    flex: 0 0 300px;
    text-align: center;
}

.digital_experience .info_img img {
    width: 220px;
    height: auto;
    border-radius: 10px;
}

.digital_experience .info_text {
    flex: 1;
}

.digital_experience .info_text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
    word-break: keep-all;
}
.digital_experience .info_content {
    display: flex;
    gap: 40px;
}

.digital_experience .info_text p {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    letter-spacing: -1px;
}
@media screen and (max-width: 1024px) {
    .digital_experience .info_box {
        flex-direction: column;
    }
    
    .digital_experience .info_img {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}
@media screen and (max-width: 480px) {
    .digital_experience .program_info {
        padding: 25px;
    }
    
    .digital_experience .info_img img {
        width: 160px;
    }
    
    .digital_experience .info_text p {
        font-size: 15px;
        line-height: 22px;
    }
}

.digital_experience .info_wrap {
    margin: 60px 0;
}

@media screen and (max-width: 1024px) {
    .digital_experience .info_wrap {
        margin: 40px 0;
    }
    
    .digital_experience .info_content {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .digital_experience .info_wrap {
        margin: 30px 0;
    }
}

@media screen and (max-width: 480px) {
    .digital_experience .info_wrap {
        margin: 20px 0;
    }
    
    .digital_experience .info_content {
        gap: 20px;
    }
}

/* 콘서트 프로그램 스타일 */
.concert_section {
    padding: 60px 0;
}

.concert_section .concert_programs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.concert_section .program_item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.concert_section .program_item:nth-child(even) {
    flex-direction: row-reverse;
}

.concert_section .program_image {
    flex: 0 0 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.concert_section .program_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.concert_section .program_image:hover img {
    transform: scale(1.05);
}

.concert_section .program_content {
    flex: 1;
}

.concert_section .program_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.concert_section .program_desc {
    font-size: 18px;
    letter-spacing: -1px;
    color: #191919;
    margin-bottom: 25px;
    line-height: 1.6;
}

.concert_section .program_info {
    color: #555;
}

.concert_section .program_info p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .concert_section .program_item {
        padding: 30px;
        gap: 30px;
    }

    .concert_section .program_title {
        font-size: 24px;
    }

    .concert_section .program_desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .concert_section .program_item,
    .concert_section .program_item:nth-child(even) {
        flex-direction: column;
        padding: 20px;
    }

    .concert_section .program_image {
        flex: 0 0 auto;
        width: 100%;
    }

    .concert_section .program_title {
        font-size: 22px;
        margin-top: 20px;
    }

    .concert_section .program_desc {
        font-size: 15px;
    }

    .concert_section .program_info p {
        font-size: 14px;
    }
}

/* 진로진학 1:1상담 스타일 */
.counsel_section {
    padding: 60px 0;
}

.counsel_section .section_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.counsel_section .counsel_content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.counsel_section .counsel_image {
    flex: 0 0 45%;
}

.counsel_section .counsel_image img {
    width: 100%;
    height: auto;
}

.counsel_section .counsel_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.counsel_section .info_item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.counsel_section .info_item:hover {
    transform: translateY(-5px);
}

.counsel_section .info_item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2253b8;
    margin-bottom: 12px;
}

.counsel_section .info_item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    word-break: keep-all;
}

.counsel_section .counsel_title {
    text-align: center;
    margin-bottom: 60px;
}

.counsel_section .counsel_title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.counsel_section .counsel_title .sub_desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

.counsel_section .feature_list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.counsel_section .feature_item {
    flex: 0 1 180px;
    text-align: center;
}

.counsel_section .feature_item .icon_wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.counsel_section .feature_item:hover .icon_wrap {
    transform: translateY(-5px);
}

.counsel_section .feature_item .icon_wrap i {
    font-size: 45px;
    color: #2253b8;
}

@media screen and (max-width: 1024px) {
    .counsel_section .feature_list {
        gap: 30px;
    }

    .counsel_section .feature_item {
        flex: 0 1 160px;
    }

    .counsel_section .feature_item .icon_wrap {
        width: 100px;
        height: 100px;
    }

    .counsel_section .feature_item .icon_wrap i {
        font-size: 35px;
    }
}

@media screen and (max-width: 480px) {
    .counsel_section {
        padding: 30px 0;
    }

    .counsel_section .section_title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .counsel_section .info_item {
        padding: 20px;
    }

    .counsel_section .info_item h3 {
        font-size: 18px;
    }

    .counsel_section .info_item p {
        font-size: 15px;
    }

    .counsel_section .counsel_title {
        margin-bottom: 40px;
    }

    .counsel_section .counsel_title h2 {
        font-size: 28px;
    }

    .counsel_section .counsel_title .sub_desc {
        font-size: 16px;
    }
}

.counsel_section .feature_item .icon_wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.counsel_section .feature_item:hover .icon_wrap {
    transform: translateY(-5px);
}

.counsel_section .feature_item .icon_wrap i {
    font-size: 45px;
    color: #2253b8;
}

@media screen and (max-width: 1024px) {
    .counsel_section .feature_item .icon_wrap {
        width: 100px;
        height: 100px;
    }

    .counsel_section .feature_item .icon_wrap i {
        font-size: 35px;
    }
}

@media screen and (max-width: 480px) {
    .counsel_section .feature_item .icon_wrap {
        width: 80px;
        height: 80px;
    }

    .counsel_section .feature_item .icon_wrap i {
        font-size: 28px;
    }
}

/* 캠프 프로그램 스타일 */
.camp_section .video_section {
    margin-bottom: 60px;
}

.camp_section .video_container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.camp_section .video_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.camp_section .camp_program {
    padding: 60px 0;
}

.camp_section .section_title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.camp_section .program_list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.camp_section .program_item {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.camp_section .program_image {
    flex: 0 0 300px;
    border-radius: 15px;
    overflow: hidden;
}

.camp_section .program_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp_section .program_content {
    flex: 1;
}

.camp_section .program_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.camp_section .program_info {
    margin-bottom: 30px;
}

.camp_section .program_info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.camp_section .course_timeline h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.camp_section .timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.camp_section .timeline_item {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #555;
    border: 1px solid #e9ecef;
    position: relative;
}

.camp_section .timeline_item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
    .camp_section .program_item {
        flex-direction: column;
    }

    .camp_section .program_image {
        flex: 0 0 200px;
    }
}

@media screen and (max-width: 768px) {
    .camp_section .camp_program {
        padding: 40px 0;
    }

    .camp_section .section_title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .camp_section .program_list {
        gap: 40px;
    }

    .camp_section .program_item {
        padding: 20px;
    }

    .camp_section .timeline {
        gap: 10px;
    }

    .camp_section .timeline_item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .camp_section .camp_program {
        padding: 30px 0;
    }

    .camp_section .section_title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .camp_section .program_list {
        gap: 30px;
    }

    .camp_section .program_title {
        font-size: 20px;
    }

    .camp_section .program_info p {
        font-size: 14px;
    }

    .camp_section .course_timeline h4 {
        font-size: 16px;
    }

    .camp_section .timeline_item {
        font-size: 12px;
    }
}
.high_section {
    padding: 60px 0;
}

.high_section .high_programs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.high_section .program_item {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}

.high_section .program_image {
    flex: 0 0 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.high_section .program_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.high_section .program_content {
    flex: 1;
    padding-top: 20px;
}

.high_section .program_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.high_section .program_desc {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    word-break: keep-all;
}

@media screen and (max-width: 1024px) {
    .high_section .program_item {
        gap: 30px;
    }

    .high_section .program_image {
        flex: 0 0 350px;
    }

    .high_section .program_image img {
        height: 260px;
    }

    .high_section .program_title {
        font-size: 24px;
    }

    .high_section .program_desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .high_section .program_item {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }

    .high_section .program_image {
        width: 100%;
    }

    .high_section .program_image img {
        height: 100%;
    }

    .high_section .program_content {
        padding-top: 0;
    }

    .high_section .program_title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .high_section .program_desc {
        font-size: 15px;
    }
}

