        /* 기본 스타일 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #000000;
            --secondary-color: #d6a820;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
            --white: #ffffff;
            --gradient-light: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            --gradient-gold: linear-gradient(135deg, #d6a820 0%, #e9c25f 100%);
            --gradient-dark: linear-gradient(135deg, #000000 0%, #333333 100%);
        }
        
        body {
            font-family: "NanumSquareNeo", sans-serif;
            color: var(--primary-color);
            overflow-x: hidden;
        }
		
		img {
			max-width: 100%;
			padding: 10px 10px 30px 10px;
		}
        
        /* 헤더 스타일 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
            transition: all 0.5s ease;
        }
        
        .scrolled .header-container {
            padding: 8px 5%;
            transform: translateY(-2px);
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            line-height: 1.1;
        }
        
        .logo-text-small {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 2px;
            opacity: 0.8;
        }
        
        .logo-text-large {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: -0.5px;
        }
        
        .scrolled .logo-text-small {
            font-size: 13px;
            margin-bottom: 1px;
        }
        
        .scrolled .logo-text-large {
            font-size: 20px;
        }
        
        .logo span.highlight {
            color: var(--primary-color);
        }
        
        .main-nav {
            font-family: 'Noto Sans KR', sans-serif;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin: 0 20px;
            position: relative;
        }
        
        .nav-list a {
            text-decoration: none;
            color: var(--primary-color);
            font-size: 17px;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-list a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -15px;
            transform: translateY(-50%);
            width: 0px;
            height: 0px;
            background-color: var(--secondary-color);
            border-radius: 0%;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .nav-list a:hover::before,
        .nav-list a.active::before {
            opacity: 1;
            left: -10px;
        }
        
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .nav-list a:hover {
            color: var(--secondary-color);
        }
        
        .nav-list a:hover::after,
        .nav-list a.active::after {
            width: 100%;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(214, 168, 32, 0.6); }
            70% { box-shadow: 0 0 0 10px rgba(214, 168, 32, 0); }
            100% { box-shadow: 0 0 0 0 rgba(214, 168, 32, 0); }
        }
        
        .phone-number {
            display: flex;
            align-items: center;
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 20px;
            font-weight: 700;
        }
        
        .phone-number i {
            color: var(--secondary-color);
            margin-right: 8px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }
        
        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--primary-color);
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .hamburger span:nth-child(1) {
            top: 0px;
        }
        
        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 10px;
        }
        
        .hamburger span:nth-child(4) {
            top: 20px;
        }
        
        .hamburger.open span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
        }
        
        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }
        
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        .hamburger.open span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }
        
        /* 메인 컨텐츠 스타일 */
        .main-content {
            padding-top: 80px;
        }
        
        @media screen and (max-width: 768px) {
            .main-content {
                padding-top: 60px;
            }
        }
        
        .hero-section {
            height: 70vh;
            background-image: url('img/main.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            box-shadow: inset 0 -150px 100px -100px rgba(0, 0, 0, 0.25);
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            z-index: 2;
            color: var(--white);
        }
        
        .hero-title {
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
            display: inline-block;
            padding-left: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 1.2s ease forwards;
        }
        
        .hero-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 70%;
            background: var(--secondary-color);
        }
        
        .hero-title span {
            color: var(--secondary-color);
        }
        
        .hero-subtitle {
            font-size: 22px;
            line-height: 1.6;
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 1.2s ease forwards 0.3s;
        }
        
        .hero-subtitle strong {
            font-weight: 700;
            font-size: 24px;
        }
        
        /* 섹션 스타일 */
        .section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        
        .section:nth-child(odd) {
            background-color: var(--white);
        }
        
        .section:nth-child(even) {
            background-color: var(--light-gray);
        }
 
        .section:last-child {
            background: none;
        }
 
        .section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--white);
            clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
            z-index: 2;
        }
		
		.section:last-child::after {
            background: none;
		}
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            letter-spacing: -0.5px;
            padding: 0 15px 15px;
            display: inline-block;
            background-image: linear-gradient(to right, var(--secondary-color), var(--secondary-color));
            background-repeat: no-repeat;
            background-position: 0 100%;
            background-size: 100% 3px;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 70%;
            background-color: var(--secondary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 3px;
            height: 70%;
            background-color: var(--secondary-color);
        }
        
        .section-title-wrapper {
            text-align: center;
            position: relative;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .section-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        /* 단지 섹션 */
        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
        }
        
        .gallery-item img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }
        
        .gallery-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .gallery-desc {
            font-size: 14px;
            line-height: 1.5;
        }
        
        /* CTA 섹션 */
        .cta-section {
            text-align: center;
            padding: 100px 0;
            background: var(--gradient-dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 2px;
            background: var(--gradient-gold);
            top: 0;
            left: -50%;
            opacity: 0.4;
        }
        
        .cta-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-desc {
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gradient-gold);
            color: var(--white);
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: pulse 2s infinite;
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .cta-button:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* 푸터 스타일 */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 50px 0;
            position: relative;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        @media screen and (min-width: 769px) {
            .footer-top {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 30px;
            }
            
            .footer-contact {
                position: absolute;
                top: 50px;
                right: 5%;
            }
            
            .mobile-only {
                display: none;
            }
        }
        
        @media screen and (max-width: 768px) {
            .mobile-only {
                display: inline;
            }
        }
        
        @media screen and (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .footer-contact {
                margin-top: 20px;
                align-self: flex-start;
            }
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }
        
        .footer-text-small {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: 2px;
        }
        
        .footer-text-large {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .footer-contact {
            text-align: right;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
        }
        
        .footer-contact-item i {
            margin-right: 15px;
            color: var(--secondary-color);
            font-size: 28px;
        }
        
        .footer-contact-text {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
        }
        
        .footer-info {
            width: 100%;
            margin-bottom: 30px;
        }
        
        .footer-disclaimer {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 40px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.6;
        }
        
        /* 모바일 하단 고정 메뉴 */
        .mobile-fixed-menu {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            z-index: 999;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-fixed-items {
            display: flex;
            justify-content: space-between;
        }
        
        .mobile-fixed-item {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            text-decoration: none;
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 500;
        }
        
        .mobile-fixed-item:first-child {
            background-color: var(--secondary-color);
            color: var(--white);
        }
        
        .mobile-fixed-item:last-child {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .mobile-fixed-item i {
            display: inline-block;
            font-size: 13px;
            margin-right: 2px;
        }
        
        /* 애니메이션 */
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 테이블 스타일 추가 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
            border-top: 2px solid var(--secondary-color);
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .info-table tr {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .info-table tr:last-child {
            border-bottom: none;
        }
        
        .info-table th.info-title {
            width: 30%;
            background-color: #f8f8f8;
            padding: 15px 20px;
            text-align: left;
            font-weight: 600;
            color: var(--primary-color);
            border-right: 1px solid #e0e0e0;
        }
        
        .info-table td.info-content {
            padding: 15px 20px;
            color: var(--dark-gray);
        }
        
        .info-note {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background-color: #f8f8f8;
            border-radius: 5px;
            margin-top: 20px;
        }
        
        .note-icon {
            color: var(--secondary-color);
            font-size: 20px;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .note-content p {
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--dark-gray);
        }
        
        .note-content p:last-child {
            margin-bottom: 0;
        }
        
        /* 탭 스타일 추가 */
        .tabs-container {
            width: 100%;
            margin: 40px 0;
        }
        
        .tabs-nav {
            display: flex;
            border-bottom: 2px solid #e0e0e0;
            margin-bottom: 30px;
        }
        
        .tab-btn {
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            color: var(--dark-gray);
        }
        
        .tab-btn:hover {
            color: var(--secondary-color);
        }
        
        .tab-btn.active {
            color: var(--secondary-color);
            border-bottom-color: var(--secondary-color);
        }
        
        .tab-btn:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background-color: #e0e0e0;
        }
        
        .tab-content {
            display: none;
            animation: tabFadeIn 0.5s ease forwards;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes tabFadeIn {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
                
        
        /* 방문 예약 폼 스타일 */
        .reservation-form {
            max-width: 800px;
            margin: 20px auto;
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: left;
			color: #333;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            outline: none;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .privacy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto 20px;
            font-size: 14px;
            text-align: center;
        }
        
        .privacy-table th {
            background-color: #0077cc;
            color: white;
            text-align: center;
            padding: 10px;
            border: 1px solid #ddd;
        }
        
        .privacy-table td {
            padding: 12px 15px;
            border: 1px solid #ddd;
            background-color: #f9f9f9;
        }
        
        .privacy-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-weight: 700;
            font-size: 18px;
        }
        
        .privacy-header img {
            height: 24px;
            margin-right: 10px;
        }
        
        .privacy-notice {
            font-size: 14px;
            color: #666;
            margin: 15px 0;
            line-height: 1.5;
        }
        
        .consent-row {
            display: flex;
            align-items: center;
            margin: 20px 0;
            padding: 15px;
            background-color: #f5f5f5;
            border-radius: 5px;
            text-align: left;
        }
        
        .consent-text {
            font-weight: 600;
            margin-right: 20px;
			font-size:14px;
        }
        
        .consent-options {
            display: flex;
            align-items: center;
        }
        
        .consent-option {
            display: flex;
            align-items: center;
        }
        
        .consent-option input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 6px;
            vertical-align: middle;
        }
        
        .consent-option {
            display: flex;
            align-items: center;
        }
        
        .consent-option input {
            margin-right: 8px;
            width: 18px;
            height: 18px;
        }
        
        .submit-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gradient-gold);
            color: var(--white);
            border: none;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: all 0.3s ease;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
        }
        
        .required {
            color: #ff3b30;
            margin-left: 4px;
        }
        
        @media screen and (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .reservation-form {
                padding: 10px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .header-container {
                padding: 15px 5%;
            }
            
            .logo-text-small {
                font-size: 14px;
                margin-bottom: 1px;
            }
            
            .logo-text-large {
                font-size: 22px;
            }
            
            .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        max-height: 350px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        /* 트랜지션 속성 제거 - JavaScript로 제어 */
    }
    
    .nav-list li {
        margin: 10px 5%;
    }
    
    /* 내비게이션 항목 스타일만 유지 */
    .nav-list a::before {
        left: -10px;
        width: 4px;
        height: 16px;
        border-radius: 0;
        opacity: 0;
    }
    
    .nav-list a:hover::before,
    .nav-list a.active::before {
        opacity: 1;
    }
            
            .hamburger {
                display: block;
            }
            
            .phone-number {
                display: none;
            }
            
            .hero-section {
                height: 50vh;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 19px;
            }
            
            .section {
                padding: 60px 5%;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .feature-item {
                padding: 20px 15px;
            }
            
            .feature-icon {
                font-size: 36px;
            }
            
            .feature-title {
                font-size: 18px;
            }
            
            .feature-desc {
                font-size: 14px;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
            
            .info-row {
                flex-direction: column;
            }
            
            .info-title {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e5e5e5;
                padding: 10px 15px;
            }
            
            .info-content {
                width: 100%;
                padding: 10px 15px;
            }
            
            .mobile-fixed-menu {
                display: block;
            }
        }
        
        @media screen and (max-width: 480px) {
            .features {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 30px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .cta-title {
                font-size: 28px;
            }
            
            .cta-desc {
                font-size: 16px;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 16px;
            }
        }
		
/* 서브 비주얼 스타일 */
.sub-visual {
	margin-top: 5px;
    height: 200px;
    background-image: url('img/main.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sub-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sub-visual-content {
    position: relative;
    text-align: center;
    z-index: 2;
    color: var(--white);
    max-width: 1400px;
    padding: 0 5%;
}

.sub-visual-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
	animation: fadeIn 1.2s ease forwards;
}

.sub-visual-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    font-size: 16px;
	opacity:0;
	animation: fadeIn 1.2s ease forwards 0.3s;
}

.breadcrumb-item {
    position: relative;
    padding: 0 10px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: -5px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* 메인 컨텐츠 스타일 수정 */
.about-main {
    padding: 0 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

/* 모바일 반응형 스타일 */
@media screen and (max-width: 768px) {
	.hero-section{
		margin-top: 10px;
	}
    .sub-visual {
		margin-top: 10px;
        height: 200px;
    }
    
    .sub-visual-title {
        font-size: 32px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    .about-main {
        padding: 0 5% 60px;
    }
    
    .about-section {
        margin-bottom: 40px;
    }
}

.sub-section{
	 padding: 100px 5%;
     max-width: 1400px;
     margin: 50px auto;
     position: relative;
	animation: fadeIn 1.5s ease forwards;
}

.sub-section .cta-desc{
	font-size:16px;
	text-align:center;
}

.cta-section p.cta-desc{
	margin-bottom:50px;
	font-weight:100;
}

@media screen and (max-width: 768px) {
		.sub-section {
			padding: 0 5px;
		}

		.section-title-wrapper{
			margin-bottom:30px;
		}

		.about-section {
			margin-bottom: 80px;
		}
		.info-table{
			font-size:14px;
		}
        .cta-section {
			text-align:left;
		}	
		.cta-section p.cta-desc{
			font-size:16px;
			line-height:1.8;
		}
}


        /* 방문예약 페이지 추가 스타일 */
        .reservation-section {
            background-color: #ffffff;
            padding: 80px 0;
        }
        
        .reservation-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 방문예약 안내 스타일만 수정 */
        .reservation-info {
            text-align: center;
            background: var(--light-gray) ;
            padding: 40px 50px;
            margin-bottom: 50px;
            position: relative;
            border: 1px solid #f0f0f0;
        }
        
        .reservation-info::after {
            content: '\f274';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        
		 .reservation-info h2{
		 margin: 15px;
		 }
		
        .reservation-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-gray);
            position: relative;
        }
        
        .reservation-description:last-child {
            margin-bottom: 0;
            font-weight: 500;
            color:  var(--dark-gray);
        }
        
        @media screen and (max-width: 768px) {
            .reservation-info {
                padding: 30px 20px;
            }
            
            .reservation-description {
				margin-top:20px;
				text-align:left;
                font-size: 14px;
            }
        }