/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* 헤더 스타일 */
header {
    background-color: transparent !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 4px solid #000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: none;
}

header.scrolled {
    background-color: #fff !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.logo-en {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 2px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

header.scrolled .logo-en {
    color: #3263d6;
}

.logo-en::after {
    content: '—';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

header.scrolled .logo-en::after {
    color: #3263d6;
}

.logo-ko {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-top: 2px;
    transition: color 0.3s ease;
}

header.scrolled .logo-ko {
    color: #3263d6;
}

.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.main-nav ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
}

header.scrolled .main-nav ul li a {
    color: #333;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
}

header.scrolled .main-nav ul li a:hover,
header.scrolled .main-nav ul li a.active {
    color: #333;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease, background-color 0.3s ease;
}

header.scrolled .main-nav ul li a::after {
    background-color: #333;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 150px;
    padding: 10px 0;
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block !important;
}

.submenu li {
    display: block;
}

.submenu li a {
    padding: 10px 20px;
}

/* 메인 컨텐츠 */
main {
    min-height: calc(100vh - 200px);
}

/* 캐러셀 */
.main-carousel {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 섹션 스타일 */
.intro-section,
.service-section,
.map-section,
.customer-service {
    padding: 60px 0;
}

.intro-section {
    background: #fff;
    color: #333;
    text-align: center;
    padding-bottom: 20px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.service-section {
    background: #fff;
}

/* 이미지 갤러리 섹션 */
.image-gallery-section {
    padding: 0 0 60px 0;
    margin-top: -80px;
    background: #fff;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image-item {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(139, 115, 85, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-image-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: gallerySlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gallery-image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-image-item:hover::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.gallery-image-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* 이미지 오버레이 스타일 */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
    transition: all 0.4s ease;
}

.gallery-image-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.gallery-text {
    margin-bottom: 15px;
    width: 100%;
}

.gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.gallery-btn {
    background-color: #3263d6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
    background-color: #2a52b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes gallerySlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 414px) {
    .image-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .image-gallery-section {
        padding: 0 0 40px 0;
        margin-top: -100px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 20px 15px;
    }
    
    .map-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .map-title-en {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
        letter-spacing: 1px;
    }
    
    .map-description {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .map-phone,
    .map-mobile {
        font-size: 16px;
    }
    
    .map-wrapper {
        margin-top: 40px;
        border-radius: 10px;
    }
    
    .map-section {
        padding: 50px 0 50px 0;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    .image-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .map-title-en {
        font-size: 16px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .map-description {
        font-size: 14px;
    }
    
    .map-phone,
    .map-mobile {
        font-size: 16px;
    }
}

.service-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c5aa0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c5aa0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #1e3d6f;
}

/* 지도 섹션 */
.map-section {
    padding: 80px 0 100px 0;
    background: #fff;
}

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

.map-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-info-top {
    text-align: center;
    padding: 0;
    margin-bottom: 50px;
}

.map-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.map-title-en {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-left: 10px;
    letter-spacing: 2px;
}

.map-description {
    margin-bottom: 5px;
    font-size: 24px;
    color: #333;
    line-height: 1.6;
}

.map-contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.map-phone,
.map-mobile {
    margin: 0;
    font-size: 28px;
    color: #000;
    font-weight: 700;
}

.map-phone strong,
.map-mobile strong {
    color: #000;
    margin-right: 10px;
    font-weight: 700;
}

/* 고객센터 */
.customer-service {
    background: #2c5aa0;
    color: #fff;
    text-align: center;
}

.customer-service h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.customer-service .phone {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

/* 히어로 이미지 섹션 */
.hero-image-section {
    width: 100%;
    margin: -100px 0 0 0;
    padding: 0;
    overflow: hidden;
    height: 750px;
    min-height: 750px;
    display: block;
    position: relative;
}

.hero-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-section .hero-main-image {
    width: 100%;
    height: 750px;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-subtitle-top {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-title-main {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.4;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* 모바일 전용 줄바꿈 - 데스크톱에서는 숨김 */
.mobile-br-only {
    display: none;
}

.hero-subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-title.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

/* 페이지 헤더 */
.page-header {
    background: #fff;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
}

/* 페이지 컨텐츠 */
.page-content {
    padding: 80px 0 40px 0;
    background: #fff;
}

/* 컨텐츠 섹션 */
.content-section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5aa0;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.content-section h2.about-main-title {
    font-size: 48px !important;
    border-bottom: none;
    padding-bottom: 0;
    color: #111;
}

.content-section h2.inquiry-main-title {
    font-size: 48px !important;
    border-bottom: none;
    padding-bottom: 0;
    color: #111;
}

.content-section h2.info-main-title {
    font-size: 48px !important;
    border-bottom: none;
    padding-bottom: 0;
    color: #111;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.subpage-content {
    padding: 20px 0;
}

.subpage-content p {
    word-break: keep-all;
    line-height: 1.8;
    margin-bottom: 18px;
}

.subpage-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.subpage-intro-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-section .lead {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.activity-list {
    list-style: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.activity-list li {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #000;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.info-item h3 {
    margin-top: 0;
    color: #2c5aa0;
    font-size: 18px;
}

.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.about-content,
.service-content,
.location-content {
    max-width: 800px;
    margin: 0 auto;
}

/* 센터소개 메인 이미지 */
.about-hero-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-hero-image .hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.about-content h2,
.service-content h2,
.location-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.about-content h3,
.service-content h3,
.location-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.about-content ul,
.service-content ul,
.location-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-content li,
.service-content li,
.location-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-content ol,
.service-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.contact-box h3 {
    margin-bottom: 15px;
}

.contact-box .phone {
    font-size: 20px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 15px 0;
}

/* 공지사항 테이블 */
.notice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.notice-table th,
.notice-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.notice-table th {
    background-color: #2c5aa0;
    color: #fff;
    font-weight: bold;
}

.notice-table td a {
    color: #333;
    text-decoration: none;
}

.notice-table td a:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

/* 고객센터 스타일 */
.inquiry-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 50px;
}

.inquiry-main-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.inquiry-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.inquiry-subtitle .mobile-br-only {
    display: none;
}

.inquiry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.inquiry-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.inquiry-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3263d6 0%, #3263d6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
}

.inquiry-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.inquiry-card-content {
    color: #555;
}

.inquiry-info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.inquiry-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.inquiry-info-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

.inquiry-info-value {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.inquiry-phone {
    color: #3263d6;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inquiry-phone:hover {
    color: #3263d6;
}

.inquiry-info-address .inquiry-info-value {
    line-height: 1.8;
}

.inquiry-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inquiry-guide-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}

.inquiry-guide-list li:last-child {
    border-bottom: none;
}

.inquiry-guide-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3263d6;
    font-weight: bold;
    font-size: 18px;
}

.inquiry-action {
    text-align: center;
    margin-top: 50px;
}

.inquiry-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3263d6 0%, #3263d6 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(172, 151, 85, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 151, 85, 0.4);
}

.inquiry-btn-primary svg {
    width: 20px;
    height: 20px;
}

/* 업체안내 스타일 */
.info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-main-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.info-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.info-subtitle .mobile-br-only {
    display: none;
}

.info-intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.info-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    word-break: keep-all;
}

.info-intro-text:last-child {
    margin-bottom: 0;
}

.info-services {
    margin-bottom: 50px;
}

.info-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
}

.info-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3263d6 0%, #3263d6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.info-service-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.info-service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.info-solutions {
    margin-bottom: 30px;
}

.info-solution-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-solution-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-solution-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-solution-badge {
    background: linear-gradient(135deg, #3263d6 0%, #3263d6 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.info-solution-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

/* 업체소개 스타일 */
.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-main-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 20px;
    color: #3263d6;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.about-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3263d6 0%, #3263d6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #fff;
}

.about-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    word-break: keep-all;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-text:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3263d6 0%, #3263d6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}

.about-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.about-feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    word-break: keep-all;
}

/* 문의 폼 */
.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info .phone {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 10px 0;
}

/* 갤러리 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

/* 위치 정보 */
.address-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.address-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.map-container {
    margin: 30px 0;
}

.transport-info {
    margin-top: 30px;
}

.transport-info ul {
    margin-left: 30px;
}

.transport-info li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* 푸터 */
footer {
    background-color: #fff;
    color: #000;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

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

.footer-info {
    margin-bottom: 20px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #000;
}

.footer-copyright {
    text-align: left;
    margin-top: 20px;
    color: #000;
    font-size: 14px;
}

.footer-admin-link {
    margin-top: 15px;
    text-align: left;
}

.footer-admin-link a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-admin-link a:hover {
    color: #000;
    text-decoration: underline;
}

/* 애니메이션 효과 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 기도 안내 섹션 스타일 */
.prayer-guide-section {
    position: relative;
    overflow: visible !important;
}

.prayer-guide-section .section_bg,
.prayer-guide-section .section_bg_color {
    overflow: hidden;
}

/* 기도 안내 레이아웃 */
.prayer-guide-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px;
}

.prayer-text {
    flex: 0 0 500px;
    min-width: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
}

.prayer-images-main {
    flex: 1;
    min-width: 0;
}

.prayer-title-wrap {
    margin-bottom: 20px;
}

.prayer-content-wrap {
    margin-bottom: 30px;
}

.prayer-button-wrap {
    margin-bottom: 20px;
}

/* 기도 안내 이미지 영역 (오른쪽) */
.prayer-images-container {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 500px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;          /* 이미지 사이 간격 */
    align-items: flex-start !important;  /* 지그재그 배치를 위해 flex-start로 설정 */
}

/* 공통 이미지 박스 */
.prayer-image-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    width: 80% !important;         /* 전체 폭의 80% 정도만 사용 (지그재그 효과를 위해) */
    max-width: 400px;
    display: block !important;
    float: none !important;
    clear: both !important;
}

/* 왼쪽 정렬 이미지 */
.prayer-image-left {
    align-self: flex-start !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* 오른쪽 정렬 이미지 */
.prayer-image-right {
    align-self: flex-end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* 스크롤 애니메이션으로 나타날 때 */
.prayer-image-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.prayer-image-item img {
    display: block !important;
    width: 100% !important;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* 왼쪽 정렬 이미지의 img */
.prayer-image-left img {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* 오른쪽 정렬 이미지의 img */
.prayer-image-right img {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.prayer-image-item:hover img {
    transform: scale(1.02);
}

/* 기도 안내 이미지 행 */
.prayer-image-row {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.prayer-image-row.animate-on-scroll.animated,
.prayer-image-row.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.prayer-image-row .prayer-image-item {
    opacity: 1;
    transform: none;
}

.prayer-image-row .prayer-image-item img {
    transition: transform 0.3s ease;
}

.prayer-image-row .prayer-image-item:hover img {
    transform: scale(1.05);
}

.prayer-image-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .prayer-guide-inner {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .prayer-text {
        flex: 1 1 0 !important;
        position: relative;
        top: 0;
        padding-right: 0 !important;
        text-align: center !important;
    }
    
    .prayer-text * {
        text-align: center !important;
    }
    
    .prayer-title-wrap h2,
    .prayer-title-wrap h2[style],
    .prayer-title {
        font-size: 28px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .prayer-content-wrap {
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .prayer-content-wrap p,
    .prayer-content-wrap p[style],
    .prayer-text-p {
        font-size: 14px !important;
        text-align: center !important;
        line-height: 1.8 !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
    }
    
    .prayer-images-main {
        width: 100%;
    }
    
    .prayer-image-row {
        flex-direction: column !important;
    }
    
    .prayer-image-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .prayer-images-container {
        position: relative;
        top: 0;
        max-width: 100%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 스크롤 애니메이션 기본 클래스 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 페이드인 효과 - 즉시 실행 */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* slide-in-left와 slide-in-right가 즉시 실행되도록 */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

/* animate-on-scroll와 함께 사용되는 애니메이션 클래스들은 즉시 실행 */
.animate-on-scroll.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-on-scroll.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease-out forwards;
}

/* 애니메이션 클래스만 있을 때는 즉시 실행 */
.fade-in-up:not(.animate-on-scroll) {
    animation: fadeInUp 0.8s ease-out both;
}

.slide-in-left:not(.animate-on-scroll) {
    animation: slideInLeft 0.8s ease-out both;
}

.slide-in-right:not(.animate-on-scroll) {
    animation: slideInRight 0.8s ease-out both;
}

.scale-in:not(.animate-on-scroll) {
    animation: scaleIn 0.6s ease-out both;
}

/* 호버 애니메이션 강화 */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.link-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* 버튼 애니메이션 */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

/* 헤더 스크롤 애니메이션 */
header.scrolled {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* 로고 애니메이션 */
.logo a {
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

/* 메뉴 아이템 애니메이션은 위에서 이미 정의됨 */

/* 히어로 이미지 애니메이션 */
.hero-image-section {
    animation: fadeIn 1s ease-out;
}

.hero-image-section img {
    transition: transform 0.5s ease;
}

.hero-image-section:hover img {
    transform: scale(1.05);
}

/* 섹션 스크롤 애니메이션 */
.intro-section,
.service-section,
.quick-links {
    overflow: hidden;
}

/* 페이지 로드 시 즉시 실행되는 애니메이션 */
.intro-section .container {
    animation: fadeInUp 1s ease-out both;
}

.intro-section .container h2 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.intro-section .container p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.intro-section .container .btn {
    animation: scaleIn 0.6s ease-out 0.6s both;
}

/* 통계 섹션 스타일 */
.statistics-section {
    background: #fff;
    padding: 80px 0;
    margin: 0;
    margin-top: -20px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    color: #2c5aa0;
    line-height: 1.2;
}

.stat-value .count {
    display: inline-block;
}

.stat-value .unit {
    font-size: 36px;
    margin-left: 5px;
}

/* 통계 애니메이션 */
.stat-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.stat-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: scaleIn 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* 카드 그리드 애니메이션 */
.service-grid .service-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.service-grid .service-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-grid .link-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.link-grid .link-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-grid .link-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.link-grid .link-card:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* 통계 섹션 반응형 */
@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-value .unit {
        font-size: 28px;
    }
}

/* 반응형 디자인 - 갤럭시 S8+ 기준 (360px) */
@media (max-width: 414px) {
    header {
        height: auto;
        min-height: auto;
    }

    .header-container {
        flex-direction: column;
        gap: 12px;
        padding: 15px 12px;
        height: auto;
        min-height: auto;
    }

    .logo {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .logo a {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .logo-en {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .logo-ko {
        font-size: 16px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: visible;
    }

    .logo-en::after {
        width: 10px;
        right: -12px;
        font-size: 11px;
    }

    .main-nav ul {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none;
    }

    .main-nav ul li {
        flex-shrink: 0;
    }

    .main-nav ul li a {
        font-size: 12px;
        padding: 6px 6px;
        min-height: 36px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .submenu {
        position: static;
        display: none !important;
        box-shadow: none;
        padding-left: 15px;
    }
    
    .has-submenu.active .submenu {
        display: block !important;
    }

    .main-carousel {
        height: 280px;
    }

    .intro-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .intro-section p {
        font-size: 15px;
        padding: 0 10px;
    }

    .service-grid,
    .link-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header {
        padding: 40px 0;
    }

    .hero-image-section {
        margin: -150px 0 0 0;
        height: 320px;
        min-height: 320px;
    }

    .hero-image-section .hero-main-image {
        height: 320px;
    }
    
    .hero-text-overlay {
        top: 65%;
        transform: translate(-50%, -50%);
    }
    
    .hero-subtitle-top {
        font-size: 14px;
        padding: 0 20px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        font-weight: 600;
    }
    
    .hero-title-main {
        font-size: 22px;
        letter-spacing: 0.3px;
        padding: 0 20px;
        line-height: 1.5;
        word-break: keep-all;
        word-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        padding: 0 15px;
        letter-spacing: 0.5px;
    }

    .container {
        padding: 0 15px;
    }

    .intro-section,
    .service-section,
    .customer-service {
        padding: 40px 0;
    }
    
    .map-section {
        padding: 60px 0 40px 0;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section h2.about-main-title {
        font-size: 40px !important;
    }
    
    .content-section h2.inquiry-main-title {
        font-size: 40px !important;
    }
    
    .content-section h2.info-main-title {
        font-size: 40px !important;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section p {
        font-size: 15px;
        word-break: keep-all;
        line-height: 1.8;
        padding: 0 5px;
    }
    
    /* 고객센터 모바일 스타일 */
    .inquiry-wrapper {
        padding: 30px 15px;
    }
    
    .inquiry-main-title {
        font-size: 36px !important;
        margin-bottom: 16px;
    }
    
    .inquiry-subtitle {
        font-size: 16px;
    }
    
    .inquiry-subtitle .mobile-br-only {
        display: block;
    }
    
    .inquiry-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .inquiry-card {
        padding: 28px 24px;
    }
    
    .inquiry-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .inquiry-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .inquiry-info-value {
        font-size: 15px;
    }
    
    .inquiry-phone {
        font-size: 18px;
    }
    
    .inquiry-guide-list li {
        font-size: 15px;
        padding: 10px 0;
        padding-left: 22px;
    }
    
    .inquiry-btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    /* 업체안내 모바일 스타일 */
    .info-wrapper {
        padding: 30px 15px;
    }
    
    .info-main-title {
        font-size: 36px !important;
        margin-bottom: 16px;
    }
    
    .info-subtitle {
        font-size: 16px;
    }
    
    .info-subtitle .mobile-br-only {
        display: block;
    }
    
    .info-intro-card {
        padding: 28px 24px;
        margin-bottom: 40px;
    }
    
    .info-intro-text {
        font-size: 15px;
    }
    
    .info-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .info-service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-service-card {
        padding: 28px 24px;
    }
    
    .info-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }
    
    .info-service-title {
        font-size: 18px;
    }
    
    .info-service-desc {
        font-size: 14px;
    }
    
    .info-solution-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .info-solution-badge {
        align-self: flex-start;
    }
    
    .info-solution-item p {
        font-size: 15px;
    }
    
    /* 업체소개 모바일 스타일 */
    .about-wrapper {
        padding: 30px 15px;
    }
    
    .about-main-title {
        font-size: 36px !important;
        margin-bottom: 16px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .about-intro-card {
        padding: 36px 24px;
        margin-bottom: 40px;
    }
    
    .about-intro-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .about-intro-text {
        font-size: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-feature-card {
        padding: 32px 28px;
    }
    
    .about-feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .about-feature-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .about-feature-desc {
        font-size: 14px;
    }
    
    .subpage-content {
        padding: 0 15px;
    }
    
    .subpage-content p {
        word-break: keep-all;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .subpage-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .subpage-intro-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
        min-height: 44px;
    }

    .map-iframe {
        height: 350px;
    }

    .map-title {
        font-size: 24px;
    }

    .map-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .map-phone,
    .map-mobile {
        font-size: 18px;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-title {
        font-size: 20px;
    }

    .gallery-subtitle {
        font-size: 12px;
    }

    .gallery-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }
    
    /* 서비스 카드 섹션 모바일 스타일 */
    .service-cards-container {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .service-card-item {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 28px 24px !important;
        margin: 0 !important;
        box-shadow: 0 12px 30px rgba(15,23,42,0.12) !important;
    }
    
    .service-card-item h3 {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        word-break: keep-all;
    }
    
    .service-card-item p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        word-break: keep-all;
        white-space: normal !important;
    }
    
    .service-card-item p .mobile-br-only {
        display: block !important;
        content: "" !important;
    }
    
    .service-card-item p br:not(.mobile-br-only) {
        display: none !important;
    }
    
    .service-card-item > div[style*="width:32px"] {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 20px !important;
        border-width: 2.5px !important;
    }
    
    .service-card-item > div[style*="width:32px"] span {
        font-size: 18px !important;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-info h3 {
        font-size: 18px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .mobile-contact-buttons {
        padding: 10px;
    }

    .mobile-btn {
        padding: 10px 6px;
        font-size: 11px;
        min-height: 60px;
    }

    .mobile-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    header {
        height: auto;
        min-height: auto;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
        height: auto;
        min-height: auto;
    }

    .logo {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .logo a {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .logo-en {
        font-size: 12px;
    }

    .logo-ko {
        font-size: 18px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: visible;
    }

    .logo-en::after {
        width: 12px;
        right: -15px;
    }

    .main-nav ul {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none;
    }

    .main-nav ul li {
        flex-shrink: 0;
    }

    .main-nav ul li a {
        font-size: 13px;
        padding: 5px 8px;
        white-space: nowrap;
    }

    .submenu {
        position: static;
        display: none !important;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .has-submenu.active .submenu {
        display: block !important;
    }

    .main-carousel {
        height: 300px;
    }

    .intro-section h2 {
        font-size: 28px;
    }

    .service-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    /* 서비스 카드 섹션 모바일 스타일 (768px) */
    .service-cards-container {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .service-card-item {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 28px 24px !important;
        margin: 0 !important;
        box-shadow: 0 12px 30px rgba(15,23,42,0.12) !important;
    }
    
    .service-card-item h3 {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        word-break: keep-all;
    }
    
    .service-card-item p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        word-break: keep-all;
        white-space: normal !important;
    }
    
    .service-card-item p .mobile-br-only {
        display: block !important;
        content: "" !important;
    }
    
    .service-card-item p br:not(.mobile-br-only) {
        display: none !important;
    }
    
    .service-card-item > div[style*="width:32px"] {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 20px !important;
        border-width: 2.5px !important;
    }
    
    .service-card-item > div[style*="width:32px"] span {
        font-size: 18px !important;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .hero-image-section {
        margin: -120px 0 0 0;
        height: 350px;
        min-height: 350px;
    }

    .hero-image-section .hero-main-image {
        height: 350px;
    }
    
    .hero-text-overlay {
        top: 65%;
        transform: translate(-50%, -50%);
    }
    
    .hero-subtitle-top {
        font-size: 16px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
        padding: 0 20px;
        font-weight: 600;
    }
    
    .hero-title-main {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.5;
        padding: 0 20px;
        word-break: keep-all;
        word-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .content-section p {
        word-break: keep-all;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .subpage-content {
        padding: 0 15px;
    }
    
    .subpage-content p {
        word-break: keep-all;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .subpage-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .subpage-intro-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    /* 고객센터 모바일 스타일 (768px) */
    .inquiry-wrapper {
        padding: 30px 15px;
    }
    
    .inquiry-main-title {
        font-size: 40px !important;
        margin-bottom: 18px;
    }
    
    .inquiry-subtitle {
        font-size: 17px;
    }
    
    .inquiry-subtitle .mobile-br-only {
        display: block;
    }
    
    .inquiry-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 35px;
    }
    
    .inquiry-card {
        padding: 32px 28px;
    }
    
    .inquiry-card-icon {
    width: 60px;
    height: 60px;
        margin-bottom: 22px;
    }
    
    .inquiry-card-title {
        font-size: 22px;
        margin-bottom: 22px;
    }
    
    .inquiry-info-value {
        font-size: 16px;
    }
    
    .inquiry-phone {
        font-size: 19px;
    }
    
    .inquiry-guide-list li {
        font-size: 15px;
        padding: 11px 0;
        padding-left: 23px;
    }
    
    .inquiry-btn-primary {
        padding: 17px 36px;
        font-size: 17px;
    }
    
    /* 업체안내 모바일 스타일 (768px) */
    .info-wrapper {
        padding: 35px 20px;
    }
    
    .info-main-title {
        font-size: 40px !important;
        margin-bottom: 18px;
    }
    
    .info-subtitle {
        font-size: 17px;
    }
    
    .info-subtitle .mobile-br-only {
        display: block;
    }
    
    .info-intro-card {
        padding: 36px 28px;
        margin-bottom: 45px;
    }
    
    .info-intro-text {
        font-size: 16px;
    }
    
    .info-section-title {
        font-size: 26px;
        margin-bottom: 28px;
    }
    
    .info-service-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .info-service-card {
        padding: 30px 26px;
}

    .info-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 19px;
    }
    
    .info-service-title {
        font-size: 19px;
    }
    
    .info-service-desc {
        font-size: 15px;
    }
    
    .info-solution-item {
        flex-direction: column;
        gap: 14px;
        padding: 22px;
    }
    
    .info-solution-item p {
        font-size: 15px;
    }
    
    /* 업체소개 모바일 스타일 (768px) */
    .about-wrapper {
        padding: 35px 20px;
    }
    
    .about-main-title {
        font-size: 40px !important;
        margin-bottom: 18px;
}

    .about-subtitle {
        font-size: 19px;
    }
    
    .about-intro-card {
        padding: 42px 30px;
        margin-bottom: 45px;
    }
    
    .about-intro-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 26px;
}

    .about-intro-text {
        font-size: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    
    .about-feature-card {
        padding: 36px 30px;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }
    
    .about-feature-title {
        font-size: 21px;
        margin-bottom: 15px;
    }
    
    .about-feature-desc {
        font-size: 15px;
    }
}


/* 프로그램 소개 섹션 */
.program-intro-section {
    padding: 100px 0 0 0;
    background: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.program-title {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.program-description {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* 서비스 소개 섹션 */
.service-intro-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.service-intro-subtitle {
    text-align: center;
    font-size: 24px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.service-intro-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* 서비스 카드 래퍼 */
.service-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    gap: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 0 1 auto;
    width: 280px;
    height: 150px;
    border-radius: 8px;
    background: rgba(146, 110, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: serviceCardSlideIn 0.8s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.6s;
}

.service-card:nth-child(2) {
    animation-delay: 0.8s;
}

.service-card:nth-child(3) {
    animation-delay: 1s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 25px rgba(146, 110, 6, 0.4);
    background: rgba(146, 110, 6, 0.5);
}

@keyframes serviceCardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 서비스 피처 박스 */
.service-feature-box {
    position: relative;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.service-feature-content {
    flex: 1;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    padding: 50px;
    border-radius: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.service-feature-image-main3 {
    position: relative;
}

.service-feature-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.85) 0%, rgba(25, 118, 210, 0.85) 100%);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.service-feature-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-feature-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    font-weight: 500;
}

.service-feature-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.service-feature-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-feature-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

/* 서비스 피처 이미지 */
.service-feature-images {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.service-feature-image-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imageFadeIn 0.8s ease-out forwards;
}

.service-feature-image-item:nth-child(1) {
    animation-delay: 1.4s;
}

.service-feature-image-item:nth-child(2) {
    animation-delay: 1.6s;
}

.service-feature-image-item:nth-child(3) {
    animation-delay: 1.8s;
}

.service-feature-image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-feature-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-image-item:hover img {
    transform: scale(1.1);
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .service-feature-box {
        flex-direction: column;
    }
    
    .service-feature-content {
        max-width: 100%;
    }
    
    .service-feature-images {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 414px) {
    .prayer-text {
        text-align: center !important;
        padding-right: 0 !important;
    }
    
    .prayer-text * {
        text-align: center !important;
    }
    
    .prayer-title-wrap h2,
    .prayer-title-wrap h2[style],
    .prayer-title {
        font-size: 24px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .prayer-content-wrap {
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .prayer-content-wrap p,
    .prayer-content-wrap p[style],
    .prayer-text-p {
        font-size: 13px !important;
        text-align: center !important;
        line-height: 1.8 !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
    }
    
    .program-title {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
    
    .program-description {
        font-size: 20px !important;
        margin-bottom: 40px;
        padding: 0 20px;
        line-height: 1.8;
        word-break: keep-all;
        text-align: center;
    }
    
    .program-description .mobile-br-only {
        display: block !important;
    }
    
    .program-description strong {
        font-weight: 600;
        display: block;
        line-height: 1.6;
    }
    
    .service-intro-section {
        padding: 60px 0;
    }
    
    .service-intro-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-intro-title {
        font-size: 22px;
        margin-top: 15px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .service-card {
        width: 100px;
        height: 100px;
        font-size: 15px;
        padding: 10px 8px;
        border-radius: 6px;
        line-height: 1.3;
    }
    
    .service-card-icon {
        font-size: 14px;
    }
    
    .service-card-connector {
        display: none;
    }
    
    .service-feature-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .service-feature-content {
        padding: 25px 20px;
    }
    
    .service-feature-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .service-feature-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .service-cards-wrapper {
        flex-direction: row;
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .service-feature-images {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .service-feature-image-item {
        min-height: 200px;
    }

    .program-intro-section {
        padding: 60px 0 0 0;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    .program-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .program-description {
        font-size: 24px !important;
        padding: 0 20px;
        line-height: 1.7;
        word-break: keep-all;
        text-align: center;
    }
    
    .program-description .mobile-br-only {
        display: block !important;
    }
    
    .program-description strong {
        font-weight: 600;
        display: block;
        line-height: 1.5;
    }
    
    .service-intro-subtitle {
        font-size: 20px;
    }
    
    .service-intro-title {
        font-size: 25px;
        margin-top: 20px;
    }
    
    .service-card {
        width: 110px;
        height: 110px;
        font-size: 16px;
        line-height: 1.3;
    }
    
    .service-card-icon {
        font-size: 16px;
    }
    
    .service-card-connector {
        width: 40px;
        margin: 0 5px;
    }
    
    .service-feature-title {
        font-size: 32px;
    }
    
    .service-feature-content {
        padding: 30px;
    }
    
    .service-cards-wrapper {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .service-feature-images {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

/* 모바일 전용 문의 버튼 */
.mobile-contact-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 12px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    gap: 8px;
    justify-content: space-around;
    align-items: center;
}

.mobile-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-btn-call {
    color: #2c5aa0;
}

.mobile-btn-call:active {
    background: rgba(44, 90, 160, 0.1);
}

.mobile-btn-sms {
    color: #926e06;
}

.mobile-btn-sms:active {
    background: rgba(146, 110, 6, 0.1);
}

.mobile-btn-share {
    color: #666;
}

.mobile-btn-share:active {
    background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
    
    .mobile-br-only {
        display: none !important;
    }
}

@media (max-width: 414px) {
    .mobile-contact-buttons {
        display: flex;
        padding: 10px 8px;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .about-title-break {
        display: block;
    }
    
    .about-title-second {
        display: block;
    }

    .statistics-section {
        padding: 50px 0;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-value .unit {
        font-size: 24px;
    }

    .stat-label {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .about-hero-image .hero-img {
        max-height: 300px;
    }

    .about-content h2,
    .service-content h2,
    .location-content h2 {
        font-size: 24px;
    }

    .about-content h3,
    .service-content h3,
    .location-content h3 {
        font-size: 20px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-box .phone {
        font-size: 18px;
    }

    .notice-table th,
    .notice-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .inquiry-form {
        padding: 0 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    .mobile-contact-buttons {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .about-title-break {
        display: block;
    }
    
    .about-title-second {
        display: block;
    }
}

/* 데스크톱에서는 줄바꿈 숨김 */
.about-title-break {
    display: none;
}

.about-title-second {
    display: inline;
}

