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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            color: #333;
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            min-height: 100vh;
            background: url('../images/banner.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 40px 60px;
        }

        .hero-logo {
            position: absolute;
            top: 20px;
            left: 40px;
        }

            .hero-logo img {
                height: 70px;
            }

        .hero-content {
            flex: 1;
            max-width: 55%;
            color: #fff;
            padding-top: 60px;
        }

            .hero-content h1 {
                font-size: 42px;
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 20px;
                color: #fff;
            }

            .hero-content p {
                font-size: 18px;
                line-height: 1.6;
                margin-bottom: 25px;
                color: #f0f0f0;
            }

        .hero-badge {
            display: inline-block;
            background: #1E4D92;
            color: #fff;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
        }

        .hero-form {
            width: 38%;
            background: #1E4D92;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            color: #fff;
        }

        /* SECTION 2 - PROGRAM OVERVIEW */
        .program-overview {
            display: flex;
            align-items: center;
            padding: 80px 60px;
            gap: 60px;
            background: #fff;
        }

            .program-overview img {
                width: 45%;
                border-radius: 12px;
                object-fit: cover;
            }

        .program-overview-content {
            flex: 1;
        }

            .program-overview-content h2 {
                font-size: 32px;
                font-weight: 800;
                color: #1E4D92;
                margin-bottom: 20px;
            }

            .program-overview-content p {
                font-size: 17px;
                line-height: 1.7;
                color: #444;
                margin-bottom: 20px;
            }

            .program-overview-content ul {
                list-style: none;
                padding: 0;
            }

                .program-overview-content ul li {
                    padding: 8px 0;
                    padding-left: 20px;
                    position: relative;
                    font-size: 16px;
                    color: #333;
                }

                    .program-overview-content ul li::before {
                        content: "\2022";
                        color: #1E4D92;
                        position: absolute;
                        left: 0;
                        font-weight: bold;
                    }

        /* SECTION 3 - WHAT YOU'LL LEARN + OUTCOMES */
        .learn-outcomes {
            background: #F5F5F5;
            padding: 80px 60px;
        }

            .learn-outcomes h2 {
                font-size: 30px;
                font-weight: 800;
                color: #1E4D92;
                margin-bottom: 30px;
                text-align: center;
            }

        .tick-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto 50px;
        }

        .tick-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: #fff;
            padding: 16px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

            .tick-item img {
                width: 22px;
                height: 22px;
                margin-top: 2px;
            }

            .tick-item span {
                font-size: 15px;
                color: #333;
                line-height: 1.5;
            }

        /* SECTION 4 - WHY IILM */
        .why-iilm {
            display: flex;
            align-items: center;
            padding: 80px 60px;
            gap: 60px;
            background: #fff;
        }

            .why-iilm img {
                width: 45%;
                border-radius: 12px;
                object-fit: cover;
            }

        .why-iilm-content {
            flex: 1;
        }

            .why-iilm-content h2 {
                font-size: 30px;
                font-weight: 800;
                color: #1E4D92;
                margin-bottom: 25px;
            }

        .why-box {
            background: #F5F5F5;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 14px;
            font-size: 15px;
            color: #333;
            line-height: 1.5;
        }

        /* FOOTER */
        .footer {
            background: #F0F4FA;
            padding: 30px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .footer img {
                height: 55px;
            }

        .footer-text {
            font-size: 14px;
            color: #555;
        }

            .footer-text a {
                color: #1E4D92;
                text-decoration: none;
                margin: 0 5px;
            }

        .powered-by {
            background: #fff;
            padding: 10px 20px;
            text-align: center;
            font-size: 13px;
            color: #999;
            border-top: 1px solid #eee;
        }

            .powered-by a {
                color: #333;
                text-decoration: none;
                font-weight: 600;
            }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                padding: 80px 20px 40px;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 30px;
            }

            .hero-form {
                width: 100%;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .program-overview {
                flex-direction: column;
                padding: 50px 20px;
            }

                .program-overview img {
                    width: 100%;
                }

            .tick-list {
                grid-template-columns: 1fr;
            }

            .learn-outcomes {
                padding: 50px 20px;
            }

            .why-iilm {
                flex-direction: column;
                padding: 50px 20px;
            }

                .why-iilm img {
                    width: 100%;
                }

            .footer {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 30px 20px;
            }
        }