:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            --light-gradient: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #4facfe;
            --text-primary: #2c3e50;
            --text-secondary: #718096;
            --text-light: #a0aec0;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --border-color: #e2e8f0;
            
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
            
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Noto Sans KR', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 헤더 스타일 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 1.2rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .logo {
            width:150px;
			cursor:pointer;
        }

		.logo img{
            width:150px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 25px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .cta-button {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #2a5785;
        }

        /* 히어로 섹션 */
        .hero {
            background: linear-gradient(145deg, #e6f2ff 0%, #ffffff 100%);
            padding: 60px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* 특징 섹션 */
        .features {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
        }
        .section-title p {
            font-size: 1.1rem;
            color: #666;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .feature-item h3 {
            margin-bottom: 15px;
            font-size: 22px;
        }

        /* 강사 소개 섹션 */
        .instructor {
            padding: 100px 0;
            /*background-color: var(--secondary-color);*/
        }

        .instructor-profile {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-top: 40px;
        }

        .instructor-image {
            width: 50%;
            border-radius: 10px;
            overflow: hidden;
				margin:0 auto;
        }

        .instructor-image img {
            width: 100%;
            height: auto;
            display: block;
			text-align:center;
		
        }

        .instructor-info {
            width: 65%;
        }

        .instructor-info h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .instructor-info p {
            margin-bottom: 20px;
        }

        .credentials {
            margin-top: 30px;
        }

        .credentials h4 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .credentials ul {
            list-style-position: inside;
            margin-bottom: 20px;
        }

        /* 프로그램 섹션 */
/* Programs Section */
        .programs {
            background: var(--light-bg);
        }

        .programs-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .program-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .program-item {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            width: 350px;
            position: relative;
        }

        .program-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition);
        }

        .program-item:hover::before {
            opacity: 0.05;
        }

        .program-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .program-image {
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--white);
            padding: 1rem 1.5rem;
            background: var(--secondary-gradient);
            margin-bottom: 0;
            position: relative;
        }

        .program-details {
            padding: 2rem;
            position: relative;
        }

        .program-details h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .program-details p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .program-details ul {
            list-style: none;
            padding: 0;
        }

        .program-details li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: var(--text-secondary);
        }

        .program-details li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        /* 후기 섹션 */
     .testimonials {
        padding: 60px 0;
        background-color: #f9f9f9;
    }
    
    .testimonial-item {
        background: white;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        padding: 20px;
        margin: 10px;
    }
    
    .testimonial-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 15px;
    }
    
    .testimonial-content p {
        font-style: italic;
        margin-bottom: 15px;
        color: #555;
    }
    
    .testimonial-author {
        text-align: right;
        color: #333;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        color: #333;
    }
    
    /* Owl Carousel 커스텀 스타일 */
    .owl-nav button {
        background: #E9C2C2 !important;
        color: white !important;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        font-size: 20px !important;
    }
    
    .owl-dots .owl-dot.active span {
        background: #E9C2C2 !important;
    }
        /* 추천 대상 섹션 */
        .recommended {
            padding: 100px 0;
        }

        .recommended-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .recommended-item {
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #E9C2C2;
        }

        .recommended-icon {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .recommended-item h3 {
            margin-bottom: 15px;
            font-size: 22px;
        }

        /* 요금 섹션 */
        .pricing {
            padding: 100px 0;
            background-color: var(--secondary-color);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .pricing-item {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s;
        }

        .pricing-item:hover {
            transform: translateY(-10px);
        }

        .pricing-header {
            padding: 25px;
            background-color: var(--primary-color);
            color: var(--white);
        }

        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .price {
            font-size: 36px;
            font-weight: 700;
        }

        .period {
            font-size: 14px;
            opacity: 0.8;
        }

        .pricing-features {
            padding: 30px;
        }

        .pricing-features ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        /* FAQ 섹션 */
        .faq {
            padding: 100px 0;
        }

        .faq-grid {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            background-color: var(--white);
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '+';
            font-size: 20px;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #f9f9f9;
        }

        .faq-item.active .faq-question::after {
            content: '-';
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 1000px;
        }

        /* 문의하기 섹션 */
        .contact {
            padding: 100px 0;
            background-color: var(--secondary-color);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 40px;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 15px;
        }

        .contact-form {
            display: grid;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-control {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-button:hover {
            background-color: #2a5785;
        }

        /* 푸터 스타일 */
        footer {
            background-color: #1a3a5f;
            color: var(--white);
            padding: 50px 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
        }

        /* 반응형 스타일 */
        @media (max-width: 768px) {
		.hero{padding:0px;}
            .hero h1 {
                font-size: 36px;
            }
            
            .instructor-profile {
                flex-direction: column;
            }
            
            .instructor-image, .instructor-info {
                width: 100%;
            }
            
            .nav-menu {
                display: none;
            }


        }

    /* 찾아오시는 길 스타일 */
    .location {
        padding: 60px 0;
        background-color: #ffffff;
    }
    
    .location-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .map-container {
        flex: 1;
        min-width: 300px;
    }
    
    .location-info {
        flex: 1;
        min-width: 300px;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .location-info h3 {
        margin-bottom: 20px;
        color: #333;
    }
    
    .location-info ul {
        list-style: none;
        padding: 0;
    }
    
.location-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center; /* flex-start -> center */
}

    
.location-info i {
    margin-right: 10px;
    color: #282C49;
    min-width: 20px;
    line-height: 1.2; /* 아이콘 높이 맞추기용 */
    margin-top: 3px;  /* 텍스트 첫 줄과 맞추기 위해 약간 조정 */
}

    
    /* 푸터 스타일 */
    .footer {
        background-color: #222;
        color: #fff;
        padding: 60px 0 20px;
    }
    
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        flex: 1;
        min-width: 200px;
    }
    
    .footer-logo img {
        max-width: 150px;
        margin-bottom: 15px;
    }
    
    .footer-links, .footer-contact, .footer-social {
        flex: 1;
        min-width: 200px;
    }
    
    .footer h4 {
        color: #fff;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer h4:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #282C49;
    }
    
    .footer ul {
        list-style: none;
        padding: 0;
    }
    
    .footer li {
        margin-bottom: 12px;
    }
    
    .footer a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }
    
  
    
    .social-icons {
        display: flex;
        gap: 15px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #333;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s;
    }
  
    
    .footer-bottom {
        border-top: 1px solid #444;
        padding-top: 20px;
        text-align:center;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .footer-policy {
        display: flex;
        gap: 20px;
    }
    
    @media (max-width: 768px) {
        .footer-content > div {
            flex: 100%;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-policy {
            margin-top: 10px;
        }
    }

/* FAQ Section Styling */
/* FAQ Section Styling */
.location {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-container {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px 50px 20px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.faq-item h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #dc3545; /* 빨간색 제목 텍스트 */
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-content {
  display: none;
  padding-top: 15px;
  margin-top: 15px;
  color: #495057;
  line-height: 1.6;
}

.faq-item.faq-active .faq-content {
  display: block;
}

/* 화살표 스타일링 - 휘어진 모양으로 수정 */
.faq-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #adb5bd;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* 기본 상태의 화살표 - 오른쪽 방향 (>) */
.faq-item .faq-toggle:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #adb5bd;
  border-right: 2px solid #adb5bd;
  transform: rotate(45deg);
}

/* 활성화된 항목의 화살표 - 아래 방향 (∨) */
.faq-item.faq-active .faq-toggle:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #adb5bd;
  border-right: 2px solid #adb5bd;
  transform: rotate(135deg);
}

/* 활성화된 항목 스타일링 */
.faq-item.faq-active {
  background-color: #fff;
  border-color: #dee2e6;
}

.faq-item:hover {
  border-color: #dc3545;
}

/* 반응형 조정 */
@media (max-width: 768px) {
  .faq-item {
    padding: 15px 40px 15px 15px;
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
  
  .faq-toggle {
    right: 15px;
  }
}