  /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Tahoma, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #1f2933;
        }

        /* CONTAINER */
        .container {
            width: 90%;
            max-width: 1100px;
            margin: auto;
        }

        /* NAVBAR */
        .navbar {
            background-color: #2D2D72;
            padding: 15px 0;
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
        }

        .logo span {
            color: #6EC1E4;
        }

        /* NAV LINKS */
        nav {
            display: flex;
            gap: 20px;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
        }

        nav a:hover,
        nav a.active {
            color: #6EC1E4;
        }

        /* MOBILE MENU BUTTON */
        .menu-toggle {
            display: none;
            font-size: 26px;
            color: #ffffff;
            cursor: pointer;
        }

        /* HERO */
        .hero {
            min-height: calc(100vh - 140px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .hero-content {
            max-width: 620px;
        }

        .hero h1 {
            font-size: 2.4rem;
            margin-bottom: 15px;
            color: #2D2D72;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 35px;
            color: #4b5563;
        }

        /* BUTTONS */
        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: #2D2D72;
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: #23235c;
        }

        .btn-outline {
            border: 2px solid #6EC1E4;
            color: #2D2D72;
            padding: 10px 26px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
        }

        .btn-outline:hover {
            background-color: #6EC1E4;
            color: #ffffff;
        }

        /* FOOTER */
        .footer {
            background-color: #2D2D72;
            color: #ffffff;
            text-align: center;
            padding: 15px;
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {

            .menu-toggle {
                display: block;
            }

            nav {
                position: absolute;
                top: 65px;
                right: 0;
                background-color: #2D2D72;
                flex-direction: column;
                width: 100%;
                display: none;
                text-align: center;
                padding: 15px 0;
            }

            nav a {
                padding: 12px 0;
                display: block;
            }

            nav.show {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }