  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }

        /* =====================================================
           HEADER STYLING
           ===================================================== */
        .main-header {
            background-color: #efefef;
            width: 100%;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            align-items: center;
        }

        .main-logo {
            height: 90px;
            margin-right: 50px;
        }

        .nav-bar ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-bar ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 900;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-bar ul li a:hover,
        .nav-bar ul li a.active {
            color: #1a1a8c;
        }

        .bottom-navy-line {
            height: 7px;
            background-color: #1e1e50;
        }

        /* =====================================================
           MAIN CONTENT
           ===================================================== */
        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .header-button {
            background-color: #1a1a5e;
            color: #fff;
            display: inline-block;
            padding: 8px 25px;
            font-weight: bold;
            border-radius: 4px;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .main-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .content-text {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
        }

        .apply-title {
            font-size: 24px;
            font-weight: bold;
            margin-top: 40px;
            margin-bottom: 15px;
        }

        .instruction {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 14px;
            margin: 4px 0;
        }

        /* =====================================================
           FOOTER
           ===================================================== */
        .footer {
            background-color: #06061a;
            color: #ffffff;
            padding: 60px 10% 20px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .brand-col {
            flex: 2;
        }

        .footer-logo {
            width: 180px;
            margin-bottom: 20px;
        }

        .footer-column h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column p,
        .footer-column ul li a {
            font-size: 14px;
            color: #b0b0b0;
            line-height: 1.6;
            text-decoration: none;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a:hover {
            color: #ffffff;
        }

        .icons {
            display: flex;
            gap: 10px;
        }

        .icon-box {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #fff;
            font-size: 12px;
            text-decoration: none;
        }

        .footer-divider {
            border: none;
            border-top: 1px solid #333;
            margin: 40px 0 20px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #888;
        }

        .legal-links a {
            color: #888;
            margin-left: 20px;
            text-decoration: none;
        }

        /* =====================================================
           RESPONSIVE
           ===================================================== */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .main-logo {
                margin: 0 0 10px 0;
            }

            .nav-bar ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .footer-container {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }