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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Top Bar */
        .top-bar {
            background: #0f172a;
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .top-bar-left {
            display: flex;
            gap: 2rem;
        }

        .top-bar-right {
            display: flex;
            gap: 1rem;
        }

        .top-bar a {
            color: #cbd5e1;
            text-decoration: none;
        }

        .top-bar a:hover {
            color: white;
        }

        /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo img {
            width: 50px;
            height: 50px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--main-color, #1e40af);
        }

        .logo-subtitle {
            font-size: 0.9rem;
            color: #64748b;
        }


        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            transition: max-height 0.3s, opacity 0.3s;
        }

        /* Hamburger button */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            margin-left: 1rem;
            z-index: 1100;
        }
        .nav-toggle-bar {
            width: 28px;
            height: 3px;
            background: #334155;
            margin: 4px 0;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .nav-toggle.open .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.open .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.open .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 900px) {
            .nav-toggle {
                display: flex;
                z-index: 3000;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
                background: #fff;
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                gap: 0;
                padding: 0 0 0 0;
                z-index: 2500;
                transition: max-height 0.3s, opacity 0.3s;
            }
            .nav-menu.nav-menu-open {
                display: flex;
                max-height: 500px;
                opacity: 1;
                padding: 1rem 0 1rem 0;
                pointer-events: auto;
            }
            .nav-menu li {
                width: 100%;
                text-align: center;
                margin: 0.5rem 0;
            }
            .nav-menu li.has-dropdown .dropdown-menu {
                position: static;
                box-shadow: none;
                background: #f8fafc;
                min-width: 100%;
                margin-top: 0.5rem;
            }
        }

        @media (max-width: 600px) {
            .nav-container {
                padding: 1rem 0.5rem;
            }
            .nav-menu {
                font-size: 1.05rem;
            }
        }

        .nav-menu a {
            color: #334155;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .nav-menu a:hover {
            background: #f1f5f9;
            color: var(--main-color, #1e40af);
        }

        /* Dropdown Menu */
        .nav-menu li.has-dropdown {
            position: relative;
        }

        .nav-menu li.has-dropdown > a::after {
            content: ' \25BE';
            font-size: 0.75rem;
            margin-left: 3px;
        }
        

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            min-width: 180px;
            z-index: 9999;
            padding: 0.4rem 0;
            list-style: none;
        }

        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.2rem;
            color: #334155;
            font-size: 0.88rem;
            border-radius: 0;
            white-space: nowrap;
        }

        .dropdown-menu li a:hover {
            background: #f1f5f9;
            color: var(--main-color, #1e40af);
        }

        .nav-menu li.has-dropdown:hover .dropdown-menu {
            display: block;
        }

        .login-btn {
            background: #dc2626;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: white !important;
            font-weight: 500;
            transition: background 0.3s;
        }

        .login-btn:hover {
            background: #b91c1c;
            color: white !important;
        }

        /* Hero Banner */
        .hero-banner {
            position: relative;
            height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.8s ease-in-out;
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 30, 60, 0.25), rgba(0, 30, 60, 0.05));
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Slider Navigation */
        .hero-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .hero-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
        }

        .hero-arrow {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .hero-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-arrow.prev {
            left: 30px;
        }

        .hero-arrow.next {
            right: 30px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Slide Content Variations */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            z-index: 15;
        }

        .slide-content.slide-1-content .hero-title {
            color: #ffffff;
        }

        .slide-content.slide-2-content .hero-title {
            color: #fbbf24;
        }

        .slide-content.slide-3-content .hero-title {
            color: #60a5fa;
        }

        /* Quick Info Cards */
        .quick-info {
            background: white;
            padding: 3rem 0;
            margin-top: -3rem;
            position: relative;
            z-index: 10;
        }

        .info-cards-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .quick-info-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--main-color, #1e40af);
            transition: transform 0.3s;
        }

        .quick-info-card:hover {
            transform: translateY(-5px);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--main-color, #1e40af), #3b82f6);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }

        .info-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--main-color, #1e40af);
            margin-bottom: 1rem;
        }

        /* Main Content */
        .main-content {
            background: #f8fafc;
            padding: 4rem 0;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .content-left h2 {
            font-size: 2.5rem;
            color: var(--main-color, #1e40af);
            margin-bottom: 2rem;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-list i {
            color: #10b981;
            font-size: 1.2rem;
        }

        .content-right {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .sidebar-title {
            font-size: 1.5rem;
            color: var(--main-color, #1e40af);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .registration-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }

        .form-group input,
        .form-group select {
            padding: 0.8rem;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--main-color, #1e40af);
        }

        .submit-btn {
            background: var(--main-color, #1e40af);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #1d4ed8;
        }

        /* Program Cards */
        .programs-section {
            background: white;
            padding: 4rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--main-color, #1e40af);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
        }

        .programs-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #e5e7eb;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--main-color, #1e40af);
        }

        .program-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .program-content {
            padding: 1.5rem;
        }

        .program-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--main-color, #1e40af);
            margin-bottom: 1rem;
        }

        .program-description {
            color: #64748b;
            margin-bottom: 1rem;
        }

        .program-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* Footer */
        .footer {
            background: var(--main-color, #1e40af);
            color: white;
            padding: 3rem 0 1rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #93c5fd;
        }

        .footer-section p,
        .footer-section a {
            color: #cbd5e1;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #3b82f6;
            color: #cbd5e1;
        }

        /* PMB Info Section */
        .pmb-info-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 4rem 0;
        }

        .pmb-info-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .pmb-info-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pmb-info-title {
            font-size: 2.5rem;
            color: var(--main-color, #1e40af);
            margin-bottom: 1rem;
        }

        .pmb-info-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .pmb-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .pmb-info-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--main-color, #1e40af);
            transition: all 0.3s ease;
        }

        .pmb-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .pmb-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .pmb-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--main-color, #1e40af), #3b82f6);
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .pmb-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--main-color, #1e40af);
        }

        .pmb-card-content {
            color: #64748b;
            line-height: 1.6;
        }

        .pmb-card-content ul {
            list-style: none;
            padding-left: 0;
        }

        .pmb-card-content li {
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
        }

        .pmb-card-content li i {
            color: #10b981;
            margin-right: 0.5rem;
            width: 16px;
        }

        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-color, #f59e0b);
            margin: 1rem 0;
        }

        .highlight-box h4 {
            color: #92400e;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .highlight-box p {
            color: #78350f;
            margin: 0;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--main-color, #1e40af), #3b82f6);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
            background: linear-gradient(135deg, #1d4ed8, #2563eb);
        }

    .back-to-top:active {
        transform: translateY(-1px);
    }

    /* CTA Buttons Styling */
    .btn-primary,
    .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 2rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #001a4d, #003d99);
        color: white;
        box-shadow: 0 4px 15px rgba(0, 26, 77, 0.3);
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #000d33, #002d70);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 26, 77, 0.5);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-cta {
        background: linear-gradient(135deg, #001a4d, #003d99);
        color: white;
        box-shadow: 0 4px 15px rgba(0, 26, 77, 0.3);
    }

    .btn-cta:hover {
        background: linear-gradient(135deg, #000d33, #002d70);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 26, 77, 0.5);
    }

    .btn-cta:active {
        transform: translateY(0);
    }

    .btn-cta.btn-outline {
        background: linear-gradient(135deg, #FFC107, #FFD54F);
        color: #333;
        border: 2px solid #FFC107;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        font-weight: 700;
    }

    .btn-cta.btn-outline:hover {
        background: linear-gradient(135deg, #FFD54F, #FFEB3B);
        border-color: #FFEB3B;
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
        transform: translateY(-2px);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .top-bar-container {
            flex-direction: column;
            gap: 0.5rem;
        }
    
        .nav-menu {
            display: none;
        }
    
        .hero-title {
            font-size: 2.5rem;
        }
    
        .content-container {
            grid-template-columns: 1fr;
        }
    
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
    }

    /* Footer styling with white text */
    .footer {
        color: white !important;
    }

    .footer h3 {
        color: white !important;
    }

    .footer p {
        color: white !important;
    }

    .footer a {
        color: white !important;
    }

    .footer-section div {
        color: white !important;
    }

    .footer-bottom {
        color: white !important;
    }

    .footer-bottom p {
        color: white !important;
    }

    /* Footer styling with white text */
    .footer {
        color: white !important;
    }

    .footer h3 {
        color: white !important;
    }

    .footer p {
        color: white !important;
    }

    .footer a {
        color: white !important;
    }

    .footer-section div {
        color: white !important;
    }

    .footer-bottom {
        color: white !important;
    }

    .footer-bottom p {
        color: white !important;
    }