
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            background-color: #003366;
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            width: 120px;
            height: auto;
        }

        .company-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        /* Navigation Menu */
        nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: white;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* Container Styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        section {
            margin-bottom: 3rem;
            scroll-margin-top: 80px;
        }

        h2 {
            color: #003366;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
        }

        /* Countdown Timer Styles */
        .countdown-banner {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
            }
            50% {
                box-shadow: 0 5px 25px rgba(255, 107, 107, 0.6);
            }
        }

        .countdown-banner h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .time-unit {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            min-width: 80px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .time-value {
            font-size: 1.8rem;
            font-weight: bold;
            display: block;
            margin-bottom: 0.3rem;
        }

        .time-label {
            font-size: 0.85rem;
            opacity: 0.9;
            text-transform: uppercase;
        }

        .countdown-text {
            font-size: 1rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }

        .modal.active {
            display: block;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 15px;
            max-width: 700px;
            width: 90%;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-modal {
            color: #aaa;
            float: left;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: #000;
        }

        .modal h2 {
            text-align: right;
            margin-bottom: 1.5rem;
            margin-top: 0;
            font-size: 1.5rem;
        }

        .program-details {
            text-align: right;
        }

        .detail-section {
            margin-bottom: 1.5rem;
            background-color: #f0f5ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-right: 4px solid #003366;
        }

        .detail-section h3 {
            color: #003366;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .detail-section ul {
            list-style: none;
            margin-right: 1rem;
        }

        .detail-section li {
            margin-bottom: 0.8rem;
            line-height: 1.8;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .detail-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .price-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .price-section h3 {
            margin-bottom: 1rem;
        }

        .price-item {
            margin-bottom: 0.8rem;
        }

        .price-item span {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            margin: 0.3rem;
        }

        /* Offers Section with Images */
        .offers-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .offer {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .offer:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

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

        .offer-content {
            padding: 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .offer-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .offer-content p {
            font-size: 1.1rem;
            font-weight: bold;
        }

        /* Services Section with Images */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .service {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

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

        .service-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .service-content {
            padding: 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 150px;
        }

        .service-content h3 {
            font-size: 1.1rem;
            color: #003366;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .details-btn {
            background-color: #003366;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .details-btn:hover {
            background-color: #00509e;
            transform: scale(1.05);
        }

        .details-btn:active {
            transform: scale(0.98);
        }

        /* Videos Section */
        .videos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background-color: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-info h3 {
            color: #003366;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .video-info p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .video-link {
            display: inline-block;
            background-color: #003366;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .video-link:hover {
            background-color: #00509e;
            transform: scale(1.05);
        }

        /* Partners Section */
        .partners {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .partner {
            width: 150px;
            height: 100px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .partner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Contact Info Section - 2 Columns */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .contact-column {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .contact-column h3 {
            color: #003366;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .contact-column p {
            margin-bottom: 0.8rem;
            line-height: 1.8;
            color: #555;
        }

        .branch-item {
            background-color: #f0f5ff;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-right: 3px solid #003366;
        }

        .branch-item h4 {
            color: #003366;
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
            font-weight: 600;
        }

        .branch-item p {
            color: #555;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background-color: #003366;
            color: white;
            text-align: center;
            padding: 1.5rem;
            margin-top: 3rem;
        }

        /* Responsive Design for Mobile */
        @media (max-width: 768px) {
            .header-container {
                padding: 0;
            }

            .company-name {
                font-size: 1.3rem;
            }

            .logo {
                width: 80px;
            }

            /* Show Hamburger Menu */
            .hamburger {
                display: flex;
            }

            /* Hide Desktop Navigation */
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #003366;
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 80px;
                transition: right 0.3s ease;
                z-index: 1000;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            nav ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav ul li a {
                display: block;
                padding: 1.2rem 2rem;
                border-radius: 0;
            }

            nav ul li a:hover {
                background-color: rgba(255, 255, 255, 0.2);
            }

            /* Hamburger Animation */
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }

            /* Show Overlay */
            .mobile-menu-overlay.active {
                display: block;
            }

            h2 {
                font-size: 1.5rem;
            }

            .offers-container {
                grid-template-columns: 1fr;
            }

            .services {
                grid-template-columns: 1fr;
            }

            .videos-container {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .modal-content {
                margin: 20% auto;
                width: 95%;
            }

            .countdown-timer {
                gap: 0.5rem;
            }

            .time-unit {
                min-width: 60px;
                padding: 0.6rem 0.8rem;
            }

            .time-value {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 1rem;
            }

            .company-name {
                font-size: 1.1rem;
            }

            .logo {
                width: 70px;
            }

            .modal-content {
                padding: 1.5rem;
            }

            .details-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .countdown-timer {
                gap: 0.3rem;
            }

            .time-unit {
                min-width: 50px;
                padding: 0.5rem 0.6rem;
            }

            .time-value {
                font-size: 1.2rem;
            }

            .time-label {
                font-size: 0.75rem;
            }
        }
    