.header .logo {
    max-width:250px;
}
.header .logo img {
    width:100%;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #574d3f;
    line-height: 1.6;
    /* overflow-x: hidden; */
}

section {
    width:100%;
    max-width: 1920px;
    margin:0 auto;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 711px;
    border-radius: 20px;
    margin: 0 60px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 144fr 44fr;
    gap: 20px; /* 간격 (선택) */
    width: 100%;
    margin: 0 auto; /* 가운데 정렬 */
    padding:0 20px;
    margin-bottom:60px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    padding: 0 60px;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fec00f;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-badge {
    background: #fec00f;
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-block;
    margin-bottom: 40px;
}

.hero-badge span {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-cards {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    background: #574d3f;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 210px;
}

.hero-sub-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 구성 (마지막 행이 2개니까) */
    grid-template-rows: auto auto auto; /* 3행 */
    gap: 20px;
}
/* 1행: 첫 번째 아이템만 전체 폭 차지 */
.item:nth-child(1) {
    grid-column: 1 / span 2;
}

/* 2행: 두 번째 아이템만 전체 폭 차지 */
.item:nth-child(2) {
    grid-column: 1 / span 2;
}

/* 3행: 세 번째, 네 번째는 각각 반씩 */
.item:nth-child(3) {
    grid-column: 1;
}
.hero-sub-content-item:nth-child(4) {
    grid-column: 2;
}
.item {
    width:100%;
    min-height:224px;
    border-radius:20px;
    overflow:hidden;
}
.item > img {
    width:100%;
    height:100%;
    object-fit: cover;
}
.item.icon-item {
    background-color: #574d3f;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.icon-item > p {
    text-align:center;
    font-size:22px;
    font-weight:800;
    color:#fff;
}
.item.icon-item > img {
    width:auto;
    height:auto;
    object-fit: contain;
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    /* margin-top:60px; */
}
.nav-link {
    text-decoration: none;
    color: #574d3f;
    font-weight: 700;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #fec00f;
}
.nav-list > .nav-div {
    padding:0 40px;
    width:530px;
    height:70px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    background-color: #fff;
    border-radius:50px;
    border:2px solid #574d3f;
}
.nav-list > .nav-div > a {
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
    color:#000;
    text-decoration:none;
    border-right: 1px solid #B2B2B2;
}
.nav-list > .nav-div > a:last-child {
    border-right: none;
}
.nav-list > a {
    width:150px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
    color:#000;
    text-decoration:none;
    background-color: #FEC00F;
    border-radius:50px;
    border:2px solid #574d3f;
}






.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-card h3 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #ffffff;
    line-height: 1.2;
}

/* Swiper Navigation Styles */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(254, 192, 15, 0.8);
    color: #000000;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper .swiper-button-next {
    right: 20px;
}

.hero-swiper .swiper-button-prev {
    left: 20px;
}

.hero-swiper .swiper-pagination {
    bottom: 20px;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fec00f;
    transform: scale(1.2);
}

/* Target Section */
.target-section {
    padding: 80px 60px;
    background: #ffffff;
}

.section-title {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.2;
    color: #574d3f;
    text-align: center;
    margin-bottom: 60px;
}

.target-grid {
    width:100%;
    height:auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.target-card {
    height:100%;
    text-align: center;
    border-radius:20px;
    /* overflow:hidden; */
}

.target-card h3 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #574d3f;
    margin-bottom: 20px;
}

.target-card p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #574d3f;
    margin-bottom: 10px;
    margin-top:15px;
}

.target-card > img {
    width:100%;
    /* height:100%; */
    object-fit: cover;
    border-radius:20px;
}

.target-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.target-content-item {
    flex: 1;
    display:flex;
    flex-direction: column;
}
.text-content {
    padding-left:40px;
}

.target-content-item >  h2{
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 800;
    font-style: Extra Bold;
    font-size: 42px;
    margin-bottom:40px;
}
.target-content-item > ul {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #574d3f;
}
.target-content-item > ul > li {
    margin-bottom:25px;
    display:flex;
    align-items: center;
    gap:10px;
}

.target-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item img {
    width: 28px;
    height: 28px;
}

.feature-item span {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #574d3f;
}

.feature-item.active span {
    color: #574d3f;
}

.feature-item:not(.active) span {
    color: #bab1a6;
}

/* Programs Section */
.programs-section {
    padding: 80px 60px;
    background: #ffffff;
}

.programs-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.programs-text h2 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 54px;
    color: #574d3f;
    margin-bottom: 40px;
}

.programs-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.program-image {
    height: 572px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Adult Ceremony Section */
.adult-ceremony {
    padding: 80px 60px;
    background: #faf6f0;
    position: relative;
}

.adult-ceremony::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('http://localhost:3845/assets/f257bc38b82993bced320f435b599e8fe1986804.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.ceremony-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.ceremony-text {
    flex: 1;
}

.ceremony-text h2 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 54px;
    color: #574d3f;
    margin-bottom: 40px;
}

.ceremony-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ceremony-image {
    flex: 1;
    max-width: 709px;
}

.ceremony-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 40px rgba(168, 157, 142, 0.25);
}

/* News Section */
.news-section {
    position: relative;
    width:100%;
    max-width: inherit !important;
    /* padding: 80px 60px; */
    background: #ffffff;
    overflow: hidden;
}
.news-section > .inner {
    max-width: 1920px;
    padding: 80px 60px;
    margin:0 auto;
}
.speaker-bg {
    position: absolute;
    width: 100%;
    height: 350px;
    background: url('/image/site/news_bg.png') center/cover;
    bottom: 0;
    z-index: 0;
}

.news-section h2 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.2;
    color: #574d3f;
    text-align: left;
    margin-bottom: 60px;
}

.speaker-slide-wrap {
    width: 3000px;
    margin-top: 50px;
    overflow: hidden;
}
.speaker-slide-list {
    margin-bottom: 70px;
}
.speaker-slide-list > .slide-ul {
    display: flex;
    gap: 30px;
}
.speaker-slide-list > .slide-ul > .slide-li {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.speaker-slide-list > .slide-ul > .slide-li > img {
    width: 100%;
}
.speaker-slide-list > .slide-ul > .slide-li > p.name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
a {
    transition: opacity 0.2s ease-in-out;
}
a:hover {
    opacity: 0.7;
}
.speaker-slide-list > .slide-ul > .slide-li > p.info {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.news-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #fec00f;
    border-color: #fec00f;
}

.nav-btn img {
    width: 23px;
    height: 27px;
}

.nav-btn.prev img {
    transform: rotate(180deg);
}

.nav-dots {
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dots img {
    width: 24px;
    height: 27px;
}

/* Experience Section */
.experience-section {
    padding: 80px 60px;
    position: relative;
}

/* Tab Navigation */
.experience-tabs {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    margin-bottom: 60px;
}

.tab-btn {
    padding: 15px 30px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #B2A99D;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex:1;
    border: none;
    background: none;
    border-bottom:2px solid #B2A99D;
}

.tab-btn:hover {
    color: #574d3f;
}

.tab-btn.active {
    color: #574d3f;
    border-bottom:2px solid #574d3f;
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    position: relative;
    z-index: 2;
}

.tab-panel.active {
    display: block;
}

/* Tab 1 Background */
.tab-panel#tab1 {
    background: url('http://localhost:3845/assets/b1a267f17998896ae359b5a9d189094b6ba846cc.png') center/cover;
    background-attachment: fixed;
}

.tab-panel#tab1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 192, 15, 0.3);
    z-index: 1;
}

/* Tab 2 Background */
.tab-panel#tab2 {
    background: url('http://localhost:3845/assets/experience_bg_02.png') center/cover;
    background-attachment: fixed;
}

.tab-panel#tab2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(87, 77, 63, 0.3);
    z-index: 1;
}

.experience-section h2 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.2;
    color: #574d3f;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.experience-content {
    position:relative;
}

.experience-info {
    position:absolute;
    top:50px;
    z-index:2;
    width:100%;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:0 40px;
}

.experience-info h3 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 10px;
}

.experience-info p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
}

.btn-inquiry {
    width:200px;
    height:60px;
    background: #FEC00F;
    border: 2px solid #574d3f;
    border-radius: 10px;
    padding: 15px 30px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #080808;
    cursor: pointer;
    transition: all 0.3s ease;
    display:flex;
    justify-content: center;
    gap:10px;
}

.btn-inquiry > img {
    /* width:100%; */
}

.btn-inquiry:hover {
    background: #574d3f;
    color: #ffffff;
}

.experience-image {
    flex: 1;
    max-width: 1800px;
    height: 860px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-wrap {
    width:100%;
    height:auto;
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
}
.bg-wrap-text {
    flex:1;
}
.bg-wrap-image {
    flex:1;
    background-image: url('/image/site/right_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width:100%;
    height:774px;
}
.bg-wrap-text h3 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height:1.2;
    margin-bottom:50px;
}
.bg-wrap-text p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #574d3f;
    line-height:1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 60px;
    background: #ffffff;
    position: relative;
}

.testimonials-swiper {
    position: relative;
    padding: 40px 0 80px 0;
    padding-top:30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #d9d1c7;
    border-radius: 20px;
    padding: 40px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.pd-top-50 {
    padding-top:50px !important;
}
.testimonial-category {
    background: #574d3f;
    color: #ffffff;
    border-radius: 21px;
    padding: 8px 16px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 16px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.testimonial-text {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #574d3f;
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-20px);
    z-index: 10;
    background:#574D3F;
}
.testimonial-card:hover .testimonial-category {
    background:#fff;
    color:#574D3F;
}
.testimonial-card:hover p {
    color:#fff;
}
.testimonial-card:hover .testimonial-author {
    color:#fff;
}

.testimonial-author {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #9b9286;
    text-align: right;
}

/* Testimonials Navigation */
.testimonials-next,
.testimonials-prev {
    color: #574d3f;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #574d3f;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.testimonials-next:hover,
.testimonials-prev:hover {
    background: #574d3f;
    color: #ffffff;
}

.testimonials-next:after,
.testimonials-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.testimonials-next {
    right: 20px;
}

.testimonials-prev {
    left: 20px;
}

.testimonials-pagination {
    bottom: 20px;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: #d9d1c7;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #574d3f;
    transform: scale(1.2);
}

.testimonials-section h2 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.2;
    color: #574d3f;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #d9d1c7;
    border-radius: 20px;
    padding: 30px;
    height: 312px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.featured {
    background: #574d3f;
    color: #ffffff;
}

.testimonial-category {
    background: #574d3f;
    color: #ffffff;
    border-radius: 21px;
    padding: 8px 16px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 16px;
    display: inline-block;
    width: fit-content;
}

.testimonial-card.featured .testimonial-category {
    background: #ffffff;
    color: #574d3f;
}

.testimonial-card p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #574d3f;
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-card.featured p {
    color: #ffffff;
}

.testimonial-author {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #574d3f;
}

.testimonial-card.featured .testimonial-author {
    color: #b2a99d;
}

.testimonials-more {
    text-align: center;
}

.testimonials-more a {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #9b9286;
    text-decoration: underline;
    text-underline-position: from-font;
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    /* padding: 80px 60px; */
    padding:0;
    /* max-width: inherit !important; */
    margin:0 auto;
    width:100%;
}

.philosophy-section > .children-banner {
    position: absolute;
    bottom: 40px !important;
    top:inherit !important;
    left: 0;
    right: 0;
    z-index: 99;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 66px;
    line-height: 1.2;
    color: #574d3f;
    margin-bottom: 40px;
}

.philosophy-text p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #a89f94;
}

.philosophy-image {
    flex: 1;
    max-width: 1230px;
    height: 774px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Navigation */
.bottom-nav {
    padding: 40px 60px;
    background: #ffffff;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    border: 2px solid #574d3f;
    border-radius: 55px;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-item {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: #fec00f;
    color: #000000;
}

.nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #574d3f;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap:20px;
    }
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .hero {
        margin: 0 20px;
        padding: 20px;
        flex-direction: column;
        height: auto;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-cards {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding:0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-images {
        grid-template-columns: 1fr;
    }
    
    .ceremony-content {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-item:not(:last-child)::after {
        display: none;
    }
    .hero-content {
        text-align:center;
    }
    .hero-slide {
        height:450px !important;
    }
    .icon-item > p {
        font-size: 18px;
    }
    .item {
        min-height:150px;
    }
    .target-content {
        flex-direction: column;
    }
    .text-content {
        padding-left:0;
    }
    .target-content-item > h2 {
        font-size:32px;
        line-height:40px;
        margin-bottom:20px;
    }
    .target-content-item > ul {
        font-size:18px;
    }
    .target-content-item > ul > li {
        margin-bottom:5px;
    }
    .target-content-item > ul > li > img {
        width:18px;
    }
    .target-content-item {
        width:100%;
    }
    .target-content-item > img {
        width:100%;
    }
    .children-banner {
        display:none;
    }
    .news-section > .inner {
        width: 100%;padding:0 20px;
    }
    .news-section h2 {
        font-size:32px;
    }
    .speaker-bg {
        width: calc(100% + 20px);
        height:250px;
        left:-20px;
        bottom:40px;
    }
    .speaker-slide-list > .slide-ul > .slide-li > p.name {
        font-size:18px;
    }
    .experience-section h2 {
        font-size:32px;
        margin-bottom:20px;
    }
    .experience-info {
        padding:0 20px;
        gap:25px;
        flex-direction: column;
    }
    .testimonials-section h2 {
        font-size:32px;
        margin-bottom:20px;
    }
    .bg-wrap {
        gap: 20px;
        flex-direction: column;
    }
    .bg-wrap-text h3 {
        font-size:32px;
        margin-bottom:20px;
    }
    .philosophy-section {
        background-image: url(/image/site/right_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .bg-wrap-text p {
        font-size:18px;
    }
    .bg-wrap-image {
        height:300px;
    }
    .philosophy-section {
        height:100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        margin-bottom:10px;
    }
    .hero-description {
        font-size:14px;
        line-height:20px;
    }
    .hero {
        margin:0;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom:30px;
    }
    
    .target-section,
    .programs-section,
    .adult-ceremony,
    .news-section,
    .experience-section,
    .testimonials-section,
    .philosophy-section {
        padding: 40px 20px;
    }
    
    .footer {
        padding: 40px 20px;
    }
}