        :root {
            --mch-yellow: #FFE52A;
            --mch-orange: #E67E22;
            --mch-blue: #3291B6;
            --mch-dark-blue: #1A365D;
            --mch-sky: #87CEEB;
        }

        body {
            font-family: 'Delius', cursive;
            background-color: #ffffff;
            color: #1a1a1a;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* View Management */
        .page-view { display: none; min-height: 100vh; }
        .page-view.active { display: block; }

        /* --- HEADER --- */
        header {
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        .logo-container {
            background-color: var(--mch-sky);
            padding: 12px 30px;
            display: inline-block;
        }        .nav-link {
            position: relative;
            font-weight: 700;
            color: #000;
            transition: color 0.3s;
        }
        .nav-link:hover { color: var(--mch-orange); }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--mch-orange);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        /* --- HERO SECTION --- */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* The Hero Image acting as a Background with Margins */
        .hero-bg-image {
            position: absolute;
            top: 90px; /* Top Margin */
            left: 15%; /* Left Margin */
            right: 5%; /* Right Margin */
            bottom: 1px;
            background-image: url('https://i.pinimg.com/736x/0c/48/8a/0c488a8db6df609407ddec9ffc228382.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            margin-left: 20%;
            margin-top: 30%;
            max-width: 450px;
            opacity: 0;
            animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.5s;
        }

        @keyframes revealUp {
            from { transform: translateY(60px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* --- SECTIONS --- */
        .section-yellow { background-color: var(--mch-yellow); color: #000; }
        .section-orange { background-color: var(--mch-orange); color: #fff; }
        .section-blue { background-color: var(--mch-blue); color: #fff; }

        .card {
            background: white;
            color: black;
            border-radius: 24px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .mch-btn-dark {
            background-color: var(--mch-dark-blue);
            color: white;
            border: 2px solid var(--mch-dark-blue);
            transition: all 0.3s;
        }
        .mch-btn-dark:hover {
            background-color: transparent;
            color: var(--mch-dark-blue);
        }

        /* Carousel */
        .carousel-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 2rem 0;
            scrollbar-width: none;
        }
        .carousel-item {
            flex: 0 0 350px;
            scroll-snap-align: start;
        }

        /* Animations on Scroll */
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .slide-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease-out; }
        .slide-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease-out; }
        .active-scroll { opacity: 1; transform: translateX(0); }

