@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background-color: #0a1410;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        header {
            background: #0f1f1a;
            color: #f0f0f0;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
            border-bottom: 2px solid #d4af37;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: #d4af37;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-links a:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }

            nav {
                padding: 1rem;
            }

            .logo {
                font-size: 1.4rem;
            }
        }

        .hero {
            background: linear-gradient(135deg, #0a1410 0%, #1a2f26 100%);
            color: #f0f0f0;
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            background-color: #d4af37;
            color: #0a1410;
            padding: 1.1rem 3rem;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 2px;
            transition: all 0.3s ease;
            border: 2px solid #d4af37;
            cursor: pointer;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
        }

        .cta-button:hover {
            background-color: transparent;
            color: #d4af37;
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
            transform: translateY(-2px);
        }

        .cta-button:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 4rem 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        section {
            padding: 4rem 2rem;
        }

        h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
            color: #ffffff;
            text-align: center;
            font-weight: 500;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #d4af37;
            font-weight: 600;
            letter-spacing: -0.005em;
        }

        p {
            color: #e0e0e0;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #1a2f26;
            padding: 2.5rem;
            border-radius: 2px;
            border-left: 4px solid #d4af37;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15);
            border-left-color: #e8d9b5;
        }

        .service-card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-card p {
            color: #e0e0e0;
            line-height: 1.8;
        }

        .service-detail p {
            margin-bottom: 2rem;
        }

        .subdivisions {
            background: #0a1410;
        }

        .subdivisions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .subdivision-card {
            background: #1a2f26;
            padding: 2.5rem;
            border-radius: 2px;
            border: 2px solid #d4af37;
            transition: all 0.3s ease;
        }

        .subdivision-card:hover {
            transform: translateX(8px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
        }

        .subdivision-card h3 {
            margin-top: 0;
            color: #ffffff;
            font-weight: 600;
        }

        .subdivision-card p {
            color: #e0e0e0;
            margin-bottom: 1.5rem;
        }

        .learn-more {
            display: inline-block;
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .learn-more:hover {
            color: #e8d9b5;
            transform: translateX(4px);
        }

        .learn-more:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
            border-radius: 2px;
        }

        .why-section {
            background: #1a2f26;
            color: #e0e0e0;
        }

        .why-section h2 {
            color: #ffffff;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-card {
            padding: 2.5rem;
            background: #0f1f1a;
            border-radius: 2px;
            border-top: 3px solid #d4af37;
            transition: all 0.3s ease;
        }

        .why-card:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
        }

        .why-card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .why-card p {
            color: #e0e0e0;
            line-height: 1.8;
        }

        footer {
            background: #0f1f1a;
            border-top: 2px solid #d4af37;
            color: #e0e0e0;
            text-align: center;
            padding: 2rem;
        }

        footer a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #e8d9b5;
        }

        footer a:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
            border-radius: 2px;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #d4af37;
            color: #0a1410;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
            font-weight: 600;
        }

        .skip-link:focus {
            top: 0;
        }

        .page-hero {
            background: linear-gradient(135deg, #0a1410 0%, #1a2f26 100%);
            color: #f0f0f0;
            padding: 5rem 2rem;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 3rem 1.5rem;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            h3 {
                font-size: 1.3rem;
            }

            section {
                padding: 2.5rem 1rem;
            }

            .services-grid,
            .subdivisions-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: #1a2f26;
            padding: 3rem;
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border: 2px solid #d4af37;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 600;
            color: #ffffff;
            font-size: 0.95rem;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #d4af37;
            background: #0f1f1a;
            color: #f0f0f0;
            border-radius: 2px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        select:focus,
        textarea:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
            border-color: #e8d9b5;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        button {
            background-color: #d4af37;
            color: #0a1410;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid #d4af37;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        button:hover {
            background-color: transparent;
            color: #d4af37;
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
        }

        button:focus {
            outline: 3px solid #d4af37;
            outline-offset: 2px;
        }

        .form-note {
            font-size: 0.9rem;
            color: #b0b0b0;
            text-align: center;
            margin-top: 2rem;
        }

        .contact-info {
            max-width: 1000px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .info-card {
            padding: 2rem;
        }

        .info-card h3 {
            color: #d4af37;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .info-card p {
            color: #e0e0e0;
        }

        .intro-section {
            background: #1a2f26;
            padding: 3rem;
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
            border: 2px solid #d4af37;
        }

        .intro-section p {
            font-size: 1.1rem;
            color: #e0e0e0;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .service-list {
            background: #1a2f26;
            padding: 3rem;
            border-radius: 2px;
            border-left: 5px solid #d4af37;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .service-list h3 {
            margin-top: 0;
            color: #d4af37;
        }

        .service-list ul {
            list-style: none;
            padding-left: 0;
        }

        .service-list li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            color: #e0e0e0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

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

        .service-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #d4af37;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .benefit-card {
            background: #1a2f26;
            padding: 2.5rem;
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            border-color: #d4af37;
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
        }

        .benefit-card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .benefit-card p {
            color: #e0e0e0;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
            margin: 3rem 0;
        }

        .stat {
            padding: 2rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #d4af37;
        }

        .stat-label {
            color: #b0b0b0;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }

        .weekly-schedule {
            background: #1a2f26;
            padding: 3rem;
            border-radius: 2px;
            border-left: 5px solid #d4af37;
        }

        .weekly-schedule h3 {
            margin-top: 0;
            color: #d4af37;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .schedule-item {
            background: #0f1f1a;
            padding: 1.5rem;
            border-radius: 2px;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            border: 2px solid #d4af37;
        }

        .schedule-item strong {
            color: #d4af37;
            display: block;
            margin-bottom: 0.5rem;
        }

        .content {
            max-width: 900px;
            margin: 0 auto;
        }

        .content p {
            font-size: 1.1rem;
            color: #e0e0e0;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .value-card {
            background: #1a2f26;
            padding: 2.5rem;
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border: 2px solid #d4af37;
        }

        .value-card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #e0e0e0;
            font-size: 1rem;
        }
