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

        html {
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        html::-webkit-scrollbar {
            display: none;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1A1A1A;
            background: #FFFFFF;
            overflow-x: hidden;
        }

        /* Color system - LIGHT THEME */
        :root {
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8F8FA;
            --bg-tertiary: #F0F0F3;
            --text-primary: #1A1A1A;
            --text-secondary: #555555;
            --text-tertiary: #888888;
            --accent: #FFBB58;
            --accent-glow: rgba(255, 187, 88, 0.15);
            --border: rgba(0, 0, 0, 0.08);
        }

        /* Typography */
        h1 {
            font-size: clamp(48px, 7vw, 64px);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        h2 {
            font-size: clamp(32px, 5vw, 40px);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        body, p, li {
            font-size: 17px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .label {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #FFD080;
        }

        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .container-narrow {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 32px;
        }

        section {
            padding: 72px 0;
            position: relative;
        }

        @media (max-width: 768px) {
            section {
                padding: 56px 0;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 40px 0;
            }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #FFFFFF;
            box-shadow: 0 2px 16px rgba(255, 187, 88, 0.2);
        }

        .btn-primary:hover {
            background: #FFD080;
            color: #FFFFFF;
            box-shadow: 0 4px 24px rgba(255, 187, 88, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
            font-size: 14px;
            padding: 8px 16px;
            margin-top: 16px;
        }

        .btn-secondary:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: auto;
            padding-top: 140px;
            padding-bottom: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            text-align: center;
            animation: fadeInDown 0.8s ease;
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 110px;
                padding-bottom: 48px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 80px;
                padding-bottom: 40px;
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            color: var(--text-primary);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero .btn {
            display: inline-flex;
        }

        /* Card Grid Section */
        .card-grid-section {
            padding: 72px 0;
            background: var(--bg-primary);
        }

        .card-grid-title {
            text-align: center;
            margin-bottom: 48px;
            animation: fadeInUp 0.8s ease;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 32px;
        }

        @media (max-width: 768px) {
            .card-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 0 24px;
            }
        }

        @media (max-width: 480px) {
            .card-grid {
                padding: 0 16px;
            }
        }

        .card {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 40px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            border-color: var(--accent);
            box-shadow: 0 8px 32px rgba(255, 187, 88, 0.15);
            transform: translateY(-4px);
        }

        .card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .card ul {
            list-style: none;
            margin: 16px 0;
            flex-grow: 0;
        }

        .card li {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }

        .card li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        .card .pricing {
            font-size: 14px;
            color: var(--accent);
            font-weight: 600;
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .card-button {
            width: 100%;
            margin-top: 16px;
        }

        /* Booking Form Section */
        .booking {
            padding: 72px 0;
            background: var(--bg-primary);
            display: none;
        }

        .booking.show {
            display: block;
        }

        .booking-intro {
            text-align: center;
            margin-bottom: 48px;
        }

        .booking-intro .body-large {
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .booking-form {
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .booking-header h2 {
            margin-bottom: 12px;
        }

        .booking-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 32px;
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .back-link:hover {
            color: var(--accent);
        }

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

        label {
            display: block;
            font-weight: 500;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="number"],
        textarea,
        select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        input[type="number"]:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 187, 88, 0.1);
        }

        input[type="text"]::placeholder,
        input[type="email"]::placeholder,
        input[type="tel"]::placeholder,
        input[type="number"]::placeholder,
        textarea::placeholder {
            color: var(--text-tertiary);
        }

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

        /* Form row layout for side-by-side fields */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* Validation Error Styles */
        .error-message {
            display: none;
            color: #EF4444;
            font-size: 13px;
            margin-top: 6px;
        }

        .error-message.show {
            display: block;
        }

        .form-group.error input,
        .form-group.error input[type="number"],
        .form-group.error textarea,
        .form-group.error select {
            border-color: #EF4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .form-optional {
            font-size: 12px;
            color: var(--text-tertiary);
            font-weight: 400;
            margin-left: 4px;
        }

        .form-submit {
            width: 100%;
            margin-top: 32px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 48px 24px;
            background: #F0FDF4;
            border-radius: 12px;
            border: 1px solid #86EFAC;
        }

        .form-success.show {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        .form-success h2 {
            color: #22C55E;
            margin-bottom: 16px;
        }

        .form-success p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.3s ease;
            padding: 24px 32px;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none !important;
        }

        .logo-sub {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-tertiary);
            display: block;
            margin-top: -4px;
        }

        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-cta {
            background: var(--accent);
            color: #FFFFFF;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration: none !important;
        }

        .nav-cta:hover {
            background: #FFD080;
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(255, 187, 88, 0.3);
        }

        /* Footer */
        footer {
            background: var(--text-primary);
            color: #FFFFFF;
            padding: 60px 32px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
            color: var(--accent);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
            text-decoration: none !important;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: clamp(36px, 6vw, 48px); }
            h2 { font-size: clamp(28px, 5vw, 36px); }

            .hero {
                padding: 80px 0;
            }

            .card-grid-section {
                padding: 56px 0;
            }

            .booking {
                padding: 56px 0;
            }

            .booking-form {
                max-width: 100%;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .btn {
                width: 100%;
            }

            footer {
                padding: 32px 0;
            }

            .container,
            .container-narrow {
                padding: 0 24px;
            }
        }

        @media (max-width: 480px) {
            .container,
            .container-narrow {
                padding: 0 16px;
            }

            h1 {
                font-size: clamp(28px, 5vw, 36px);
            }

            .hero h1 {
                margin-bottom: 16px;
            }

            .hero p {
                font-size: 17px;
                margin-bottom: 32px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .card {
                padding: 32px 24px;
            }

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