 :root {
            --primary-black: #000000;
            --secondary-black: #0D0D0D;
            --tertiary-black: #1A1A1A;
            --accent-gold: #C9A53D;
            --accent-gold-light: #E8D9A9;
            --accent-gold-dark: #A0862E;
            --pure-white: #FFFFFF;
            --light-gray: #E8E8E8;
            --medium-gray: #7A7A7A;
            --dark-gray: #333333;
            --shadow: 0 10px 40px rgba(201, 165, 61, 0.12);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans JP', 'Segoe UI', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;
        }
        body {
            background-color: var(--primary-black);
            color: var(--pure-white);
            line-height: 1.75;
            letter-spacing: 0.02em;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* ナビゲーション */
        .navbar {
            background-color: rgba(13, 13, 13, 0.98);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(201, 165, 61, 0.2);
            backdrop-filter: blur(15px);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 14px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .logo-img {
            height: 48px;
            width: auto;
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
            transition: transform 0.3s ease;
        }
        .logo-img:hover {
            transform: scale(1.05);
        }
        .logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--pure-white);
            letter-spacing: 0.05em;
        }
        .logo-text span {
            color: var(--accent-gold);
        }
        
        /* デスクトップナビゲーション */
        .nav-links {
            display: none;
        }
        
        /* モバイルメニュー */
        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        .mobile-menu-btn span {
            width: 100%;
            height: 3px;
            background-color: var(--accent-gold);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background-color: var(--secondary-black);
            z-index: 999;
            padding: 100px 40px 40px;
            transition: right 0.4s ease;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
            border-left: 1px solid rgba(201, 165, 61, 0.2);
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .mobile-nav-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .mobile-nav-links a i {
            color: var(--accent-gold);
            width: 24px;
            font-size: 1.2rem;
        }
        .mobile-nav-links a:hover {
            color: var(--accent-gold);
            padding-left: 10px;
        }
        .mobile-menu .cta-button {
            margin-top: 40px;
            width: 100%;
            text-align: center;
        }
        
        /* ヒーローエリア - 改善された間隔 */
        .hero {
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.85), rgba(13, 13, 13, 0.9)),
                url('https://static.wixstatic.com/media/91a213_55834b0fe7fd44bc806c494a8901970c~mv2.png/v1/fill/w_1349,h_732,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/91a213_55834b0fe7fd44bc806c494a8901970c~mv2.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at center,
                rgba(201, 165, 61, 0.08) 0%,
                rgba(201, 165, 61, 0.02) 40%,
                transparent 70%
            );
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px 10px; /* 上下左右の間隔を調整 */
            border-radius: var(--radius-lg);
            background: rgba(13, 13, 13, 0.7);
            backdrop-filter: blur(15px);
            border: 0px solid rgba(201, 165, 61, 0.15);
            box-shadow: var(--shadow);
        }
        .hero-title {
            font-size: 3.4rem;
            font-weight: 800;
            margin-bottom: 35px; /* 下マージン増加 */
            line-height: 1.15;
            letter-spacing: -0.02em;
            padding: 0 10px; /* 左右パディング追加 */
            background: linear-gradient(
                135deg, 
                var(--accent-gold-light) 0%,
                var(--accent-gold) 50%,
                var(--accent-gold-dark) 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 30px rgba(201, 165, 61, 0.2);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--light-gray);
            margin-bottom: 60px; /* 下マージン増加 */
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            letter-spacing: 0.03em;
            padding: 0 20px; /* 左右パディング追加 */
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 50px;
            padding: 0 10px;
        }
        .hero-button {
            padding: 20px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            letter-spacing: 0.05em;
            text-align: center;
        }
        .hero-button.primary {
            background: linear-gradient(
                135deg,
                var(--accent-gold),
                var(--accent-gold-dark)
            );
            color: var(--primary-black);
            box-shadow: 0 10px 30px rgba(201, 165, 61, 0.3);
        }
        .hero-button.primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 165, 61, 0.4);
        }
        .hero-button.secondary {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .hero-button.secondary:hover {
            background: rgba(201, 165, 61, 0.1);
            transform: translateY(-5px);
            border-color: var(--accent-gold-light);
        }
        .hero-button.outline {
            background: transparent;
            color: var(--pure-white);
            border: 1px solid var(--medium-gray);
        }
        .hero-button.outline:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            color: var(--accent-gold-light);
        }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 50px 0 40px;
            padding: 0 10px;
        }
        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(
                145deg,
                rgba(201, 165, 61, 0.05),
                rgba(201, 165, 61, 0.02)
            );
            border-radius: var(--radius-md);
            border: 1px solid rgba(201, 165, 61, 0.1);
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(201, 165, 61, 0.3);
            box-shadow: 0 15px 30px rgba(201, 165, 61, 0.1);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 12px;
            font-feature-settings: "tnum";
        }
        .stat-text {
            font-size: 0.95rem;
            color: var(--light-gray);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0.9;
        }
        .hero-quote {
            color: var(--accent-gold-light);
            font-size: 1.2rem;
            font-style: italic;
            margin-top: 50px;
            padding: 30px;
            border-left: 0px solid var(--accent-gold);
            background: rgba(201, 165, 61, 0.03);
            border-radius: var(--radius-sm);
            text-align: left;
        }
        
        /* 追加ボタンスタイル */
        .section-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 40px;
            justify-content: center;
        }
        .small-button {
            padding: 15px 25px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.03em;
        }
        .small-button.gold {
            background: rgba(201, 165, 61, 0.15);
            color: var(--accent-gold);
            border: 1px solid rgba(201, 165, 61, 0.3);
        }
        .small-button.gold:hover {
            background: rgba(201, 165, 61, 0.25);
            transform: translateY(-3px);
        }
        .small-button.dark {
            background: rgba(255, 255, 255, 0.05);
            color: var(--light-gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .small-button.dark:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            color: var(--pure-white);
        }
        
        /* 日本市場特別セクション */
        .japan-market {
            padding: 120px 0;
            background: linear-gradient(
                135deg,
                var(--secondary-black) 0%,
                var(--tertiary-black) 100%
            );
            position: relative;
            overflow: hidden;
        }
        .japan-market::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(
                circle,
                rgba(201, 165, 61, 0.05) 0%,
                rgba(201, 165, 61, 0) 70%
            );
            z-index: 1;
        }
        .market-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .market-header {
            margin-bottom: 60px;
        }
        .section-label {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(201, 165, 61, 0.1);
            color: var(--accent-gold);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .market-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: 30px;
            line-height: 1.2;
        }
        .market-title span {
            color: var(--accent-gold);
            position: relative;
            display: inline-block;
        }
        .market-title span::after {
            content: "";
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(
                90deg,
                var(--accent-gold),
                transparent
            );
        }
        .market-description {
            color: var(--light-gray);
            font-size: 1.1rem;
            line-height: 1.9;
            max-width: 600px;
        }
        .market-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 35px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .feature-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0px;
            height: 100%;
            background: linear-gradient(
                to bottom,
                var(--accent-gold),
                var(--accent-gold-dark)
            );
        }
        .feature-item:hover {
            background: rgba(201, 165, 61, 0.05);
            transform: translateX(15px);
            border-color: rgba(201, 165, 61, 0.2);
        }
        .feature-icon {
            font-size: 2.2rem;
            color: var(--accent-gold);
            min-width: 70px;
            padding-top: 5px;
        }
        .feature-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: 15px;
        }
        .feature-content p {
            color: var(--light-gray);
            line-height: 1.8;
        }
        .market-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 450px;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }
        .market-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .market-image:hover img {
            transform: scale(1.05);
        }
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(
                transparent,
                rgba(0, 0, 0, 0.9)
            );
            padding: 30px;
            color: var(--pure-white);
        }
        
        /* 卒業生の声 */
        .testimonials {
            padding: 120px 0;
            background-color: var(--secondary-black);
            position: relative;
        }
        .testimonials::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--accent-gold),
                transparent
            );
        }
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: 20px;
        }
        .section-title span {
            color: var(--accent-gold);
        }
        .section-subtitle {
            color: var(--medium-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .testimonial-card {
            background: linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.02),
                rgba(255, 255, 255, 0.01)
            );
            border-radius: var(--radius-md);
            padding: 45px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at top right,
                rgba(201, 165, 61, 0.03),
                transparent 70%
            );
            z-index: 1;
        }
        .testimonial-card:hover {
            border-color: rgba(201, 165, 61, 0.2);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(201, 165, 61, 0.08);
        }
        .testimonial-text {
            font-style: italic;
            color: var(--light-gray);
            margin-bottom: 35px;
            line-height: 1.9;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 2;
        }
        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(
                135deg,
                var(--accent-gold),
                var(--accent-gold-dark)
            );
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-black);
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        .author-info h4 {
            font-weight: 700;
            color: var(--pure-white);
            font-size: 1.25rem;
            margin-bottom: 8px;
        }
        .author-info p {
            color: var(--accent-gold);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* カリキュラム */
        .curriculum {
            padding: 120px 0;
            background-color: var(--primary-black);
            position: relative;
        }
        .curriculum::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(201, 165, 61, 0.3),
                transparent
            );
        }
        .curriculum-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .curriculum-card {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-md);
            padding: 45px 35px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }
        .curriculum-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0px;
            height: 100%;
            background: linear-gradient(
                to bottom,
                var(--accent-gold),
                var(--accent-gold-dark)
            );
        }
        .curriculum-card:hover {
            background: rgba(201, 165, 61, 0.03);
            transform: translateY(-8px);
            border-color: rgba(201, 165, 61, 0.2);
        }
        .module-number {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(201, 165, 61, 0.07);
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 1;
        }
        .curriculum-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: 20px;
        }
        .curriculum-content > p {
            color: var(--light-gray);
            margin-bottom: 25px;
            line-height: 1.8;
        }
        .curriculum-content ul {
            list-style: none;
            margin: 25px 0;
        }
        .curriculum-content li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: var(--light-gray);
            transition: color 0.3s ease;
        }
        .curriculum-content li:hover {
            color: var(--accent-gold-light);
        }
        .curriculum-content li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* CTAセクション */
        .cta-section {
            padding: 140px 0;
            background: linear-gradient(
                135deg,
                rgba(201, 165, 61, 0.08) 0%,
                rgba(13, 13, 13, 0.95) 100%
            );
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(
                circle,
                rgba(201, 165, 61, 0.1) 0%,
                transparent 70%
            );
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            margin: 0 auto;
        }
        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--pure-white);
            margin-bottom: 30px;
            line-height: 1.2;
        }
        .cta-title span {
            color: var(--accent-gold);
        }
        .cta-description {
            color: var(--light-gray);
            font-size: 1.2rem;
            line-height: 1.9;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-button {
            padding: 22px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            letter-spacing: 0.05em;
        }
        .cta-button.primary {
            background: linear-gradient(
                135deg,
                var(--accent-gold),
                var(--accent-gold-dark)
            );
            color: var(--primary-black);
            box-shadow: 0 10px 30px rgba(201, 165, 61, 0.3);
        }
        .cta-button.primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 165, 61, 0.4);
        }
        .cta-button.secondary {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .cta-button.secondary:hover {
            background: rgba(201, 165, 61, 0.1);
            transform: translateY(-5px);
            border-color: var(--accent-gold-light);
        }
        
        /* フッター */
        .footer {
            background-color: var(--secondary-black);
            padding: 100px 0 50px;
            border-top: 1px solid rgba(201, 165, 61, 0.1);
            position: relative;
        }
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--accent-gold),
                transparent
            );
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
        }
        .footer-info {
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--accent-gold);
        }
        .footer-logo i {
            font-size: 2.2rem;
        }
        .footer-description {
            color: var(--medium-gray);
            line-height: 1.9;
            margin-bottom: 30px;
            max-width: 400px;
        }
        .contact-info {
            margin-top: 30px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--light-gray);
        }
        .contact-item i {
            color: var(--accent-gold);
            width: 20px;
        }
        .footer-column h3 {
            font-size: 1.25rem;
            color: var(--pure-white);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(201, 165, 61, 0.3);
            font-weight: 600;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .footer-links a {
            color: var(--medium-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 10px;
        }
        .footer-links a::before {
            content: "›";
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--accent-gold);
        }
        .footer-links a:hover::before {
            left: 0;
            opacity: 1;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            margin-top: 70px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--medium-gray);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        /* レスポンシブデザイン */
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
            .nav-links {
                display: flex;
                gap: 40px;
            }
            .nav-links a {
                color: var(--light-gray);
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                position: relative;
                padding: 5px 0;
            }
            .nav-links a::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(
                    90deg,
                    var(--accent-gold),
                    var(--accent-gold-dark)
                );
                transition: width 0.3s ease;
            }
            .nav-links a:hover {
                color: var(--accent-gold);
            }
            .nav-links a:hover::after {
                width: 100%;
            }
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
            .stat-number {
                font-size: 2.8rem;
            }
            .market-content {
                grid-template-columns: 1fr 1fr;
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .curriculum-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
            }
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }
        @media (min-width: 992px) {
            .hero-title {
                font-size: 4rem;
            }
            .testimonial-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .curriculum-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .cta-title {
                font-size: 3.4rem;
            }
        }
        @media (min-width: 1200px) {
            .container {
                padding: 0 40px;
            }
            .hero-title {
                font-size: 4.4rem;
            }
            .hero-content {
                padding: 30px 10px;
            }
        }