:root {
            --primary-bronze: #C8935F;
            --bronze-light: #D4A574;
            --bronze-gold: #E6C18C;
            --bg-cream: #F5F3EF;
            --text-dark: #3D3D3D;
            --text-secondary: #666666;
            --dark-brown: #5D4E37;
            --footer-dark: #2C2C2C;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: #fff;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .contain{
            width: 80px;
            height: 80px;
            object-fit: scale-down;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-bronze) !important;
        }

        .btn-primary-custom {
            background-color: var(--primary-bronze);
            border: none;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background-color: var(--dark-brown);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 147, 95, 0.3);
            color: #FFF;
        }

        .btn-outline-custom {
            border: 2px solid var(--primary-bronze);
            color: var(--primary-bronze);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            background: transparent;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background-color: var(--primary-bronze);
            color: white;
            transform: translateY(-2px);
        }

        .hero-section {
            background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '♔ ♕ ♖ ♗ ♘ ♙';
            position: absolute;
            font-size: 150px;
            color: rgba(200, 147, 95, 0.05);
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            letter-spacing: 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-bronze);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-bronze), var(--bronze-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .bg-cream {
            background-color: var(--bg-cream);
        }

        .program-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
            border: 1px solid #e0e0e0;
        }

        .program-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .program-header {
            background: var(--primary-bronze);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        .program-price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 10px 0;
        }

        .program-body {
            padding: 30px 20px;
        }

        .program-feature {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .program-feature:last-child {
            border-bottom: none;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--dark-brown), var(--primary-bronze));
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        footer {
            background-color: var(--footer-dark);
            color: white;
            padding: 40px 0 20px;
        }

        footer a {
            color: var(--bronze-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: var(--bronze-gold);
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-bronze);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--bronze-light);
            transform: translateY(-3px);
        }

        .gallery-carousel {
            overflow: hidden;
            padding: 20px 0;
            position: relative;
        }

        .gallery-carousel::before,
        .gallery-carousel::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }

        .gallery-carousel::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .gallery-carousel::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .gallery-track {
            display: flex;
            gap: 30px;
            animation: scroll 40s linear infinite;
        }

        .gallery-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .gallery-slide {
            flex: 0 0 450px;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
            color: white;
            padding: 25px 20px;
            transform: translateY(0);
        }

        .gallery-caption h5 {
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--bronze-gold);
            font-size: 1.2rem;
        }

        .gallery-caption p {
            margin: 0;
            font-size: 0.95rem;
            opacity: 0.9;
        }