        :root {
            /* Brand Colors */
            --brand-magenta: #E51E63;
            --brand-indigo: #6C4DFF;
            --brand-cyan: #00AEEF;
            --brand-gradient: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
            
            /* Neutrals */
            --navy-900: #0B1B3B;
            --slate-700: #334155;
            --slate-100: #F1F5F9;
            --paper: #F8FAFC;
            --ink: #0F172A;
            
            /* Accents */
            --finance-gold: #D4A81E;
            --success: #16A34A;
            --warning: #D97706;
            --danger: #DC2626;
            --link: #0EA5E9;
            
            /* Typography */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Spacing */
            --section-padding: 5rem;
            --container-max: 1200px;
        }
        
        @media (max-width: 768px) {
            :root {
                --section-padding: 3rem;
            }
        }
        
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.6;
            color: var(--ink);
            background-color: var(--paper);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.14;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        
        h3 {
            font-size: 1.75rem;
            line-height: 1.28;
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: var(--section-padding) 0;
            position: relative;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--brand-gradient);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--navy-900);
            border: 2px solid var(--navy-900);
        }
        
        .btn-secondary:hover {
            background: var(--navy-900);
            color: white;
        }
        
        /* Card Styles */
        .card {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--brand-gradient);
        }
        
        /* Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 2rem;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--navy-900);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--brand-cyan);
        }
        
        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: var(--paper);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' opacity='0.05'%3E%3Cpath fill='%236C4DFF' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center bottom;
            opacity: 0.07;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-subhead {
            font-size: 1.5rem;
            color: var(--slate-700);
            margin-bottom: 2rem;
        }
        
        .cta-group {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--navy-900);
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.125rem;
            color: var(--slate-100);
        }
        
        /* Why Egypt Section */
        .why-egypt {
            background: var(--slate-100);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--brand-gradient);
            border-radius: 2px;
        }
        
        /* Workshop Cards */
        .workshops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .workshop-card {
            background: white;
            border-radius: 1.25rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .workshop-content {
            padding: 2rem;
        }
        
        .workshop-date {
            display: inline-block;
            background: var(--brand-gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Program Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--brand-gradient);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        /* Matchmaking Section */
        .matchmaking {
            background: var(--slate-100);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .step {
            text-align: center;
            padding: 2rem;
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--brand-gradient);
            color: white;
            font-weight: 600;
            margin: 0 auto 1rem;
        }
        
        /* Partners Section */
        .partners {
            background: white;
            text-align: center;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            align-items: center;
            margin-top: 3rem;
        }
        
        .partner-logo {
            max-width: 180px;
            max-height: 100px;
            width: auto;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        
        /* Tickets Section */
        .tickets {
            background: var(--slate-100);
        }
        
        /* Footer */
        .footer {
            background: var(--navy-900);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 0.75rem;
        }
        
        .footer-link a {
            color: var(--slate-100);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link a:hover {
            color: var(--brand-cyan);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--slate-700);
            color: var(--slate-100);
            font-size: 0.875rem;
        }
        
        /* Reminder System Styles */
        .reminder-system {
            background: var(--paper);
        }
        
        .reminder-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .reminder-card {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .reminder-card:hover {
            transform: translateY(-5px);
        }
        
        .reminder-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .reminder-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--navy-900);
        }
        
        .reminder-description {
            color: var(--slate-700);
            margin-bottom: 1.5rem;
        }
        
        .reminder-form {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--navy-900);
        }
        
        .form-input {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--brand-indigo);
            box-shadow: 0 0 0 3px rgba(108, 77, 255, 0.1);
        }
        
        .form-select {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-family: var(--font-body);
            font-size: 1rem;
            background-color: white;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23334155'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 1.5rem;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .countdown-item {
            text-align: center;
            background: var(--slate-100);
            padding: 1rem;
            border-radius: 0.5rem;
            min-width: 80px;
        }
        
        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-indigo);
        }
        
        .countdown-label {
            font-size: 0.875rem;
            color: var(--slate-700);
        }
        
        /* Ticket Options */
        .ticket-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .ticket-card {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .ticket-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--brand-gradient);
        }
        
        .ticket-type {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--navy-900);
        }
        
        .ticket-date {
            color: var(--slate-700);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .ticket-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .ticket-features li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .ticket-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                display: none; /* Would implement mobile menu toggle */
            }
            
            .cta-group {
                flex-direction: column;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }
            
            .partner-logo {
                max-width: 140px;
            }
            
            .countdown {
                flex-wrap: wrap;
            }
        }
        
/* Conference Highlight Section */
.conference-highlight {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0;
    margin: 3rem 0;
}

.conference-main {
    text-align: center;
}

.conference-header {
    margin-bottom: 2.5rem;
}

.conference-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.conference-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
}

.conference-countdown {
    margin: 3rem 0;
}

.countdown-mega {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 800px;
}

.countdown-mega-unit {
    text-align: center;
    min-width: 120px;
}

.countdown-mega-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 1rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-mega-label {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    font-weight: 600;
}

.conference-discounts {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.conference-discounts h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.conference-discounts > p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.discount-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.discount-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-card.premium {
    background: linear-gradient(135deg, rgba(229, 30, 99, 0.15) 0%, rgba(108, 77, 255, 0.15) 52%, rgba(0, 174, 239, 0.15) 100%);
    border: 2px solid rgba(229, 30, 99, 0.3);
    transform: scale(1.03);
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.discount-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.discount-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.discount-pricing {
    margin-bottom: 1.5rem;
}

.discount-price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.discount-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ADE80;
}

.discount-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.discount-savings {
    background: rgba(74, 222, 128, 0.2);
    color: #4ADE80;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    display: inline-block;
}

.progress-container {
    margin: 1.5rem 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.btn-premium {
    background: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 30, 99, 0.3);
}

.discount-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #E51E63;
}

.discount-note p {
    margin: 0;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .conference-title {
        font-size: 2.2rem;
    }
    
    .countdown-mega {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .countdown-mega-unit {
        min-width: 80px;
    }
    
    .countdown-mega-value {
        font-size: 2.5rem;
        padding: 0.75rem;
    }
    
    .discount-cards {
        grid-template-columns: 1fr;
    }
    
    .discount-card.premium {
        transform: scale(1);
    }
    
    .discount-card.premium:hover {
        transform: translateY(-5px);
    }
    
    .discount-current {
        font-size: 2rem;
    }
    
    .discount-original {
        font-size: 1.25rem;
    }
}        

/* Additional styles for countdown and pricing */
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .event-countdown {
            background: white;
            border-radius: 1.25rem;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            min-width: 250px;
        }
        
        .event-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #0B1B3B;
        }
        
        .countdown-numbers {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .countdown-unit {
            text-align: center;
            min-width: 60px;
        }
        
        .countdown-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 0.5rem;
            border-radius: 0.5rem;
            background-color: #F1F5F9;
        }
        
        .countdown-label {
            font-size: 0.875rem;
            color: #334155;
            margin-top: 0.25rem;
        }
        
        .pricing {
            margin: 1.5rem 0;
        }
        
        .price-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 0.5rem 0;
        }
        
        .current-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #16A34A;
        }
        
        .original-price {
            font-size: 1.1rem;
            text-decoration: line-through;
            color: #64748B;
        }
        
        .savings {
            display: inline-block;
            background: #FFEDD5;
            color: #9A3412;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }
        
        .ticket-price {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1rem 0;
            text-align: center;
        }
        
        .discount-note {
            text-align: center;
            font-size: 0.875rem;
            color: #16A34A;
            margin-top: 0.5rem;
            font-style: italic;
        }
        
    /* Newsletter Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            display: none;
        }

        .newsletter-popup {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .newsletter-popup h2 {
            margin-top: 0;
            color: #333;
        }

        .newsletter-popup p {
            color: #666;
            margin-bottom: 20px;
        }

        .newsletter-popup input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }

        .newsletter-popup button {
            background-color: #008080;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }

        .newsletter-popup button:hover {
            background-color: #00A6A6;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            color: #999;
        }

        .close-btn:hover {
            color: #333;
        }  
        
        /* Additional styles for new pages */

/* Page Header */
.page-header {
    background: var(--navy-900);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--slate-100);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Egypt Page Styles */
.market-overview {
    padding: 4rem 0;
}

.advantages-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.ecosystem-section {
    padding: 4rem 0;
}

.ecosystem-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ecosystem-item {
    text-align: center;
    padding: 2rem;
}

.ecosystem-item h3 {
    font-size: 3rem;
    color: var(--brand-indigo);
    margin-bottom: 0.5rem;
}

.key-players {
    margin-top: 4rem;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.player {
    background: var(--slate-100);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.investment-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.opportunity-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.opportunity-card h3 {
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.growth {
    display: inline-block;
    background: var(--brand-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Program Page Styles */
.program-tabs {
    padding: 4rem 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-700);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: var(--brand-indigo);
    border-bottom-color: var(--brand-indigo);
}

.tab-button:hover {
    color: var(--brand-indigo);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.day-date {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-900);
}

.schedule {
    max-width: 800px;
    margin: 0 auto;
}

.session-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--brand-indigo);
}

.session-time {
    min-width: 120px;
    font-weight: 600;
    color: var(--navy-900);
}

.session-details {
    flex-grow: 1;
    padding: 0 1.5rem;
}

.session-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.session-speaker {
    color: var(--slate-700);
    font-size: 0.9rem;
}

.session-type {
    background: var(--slate-100);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.session-card.keynote {
    border-left-color: #E51E63;
}

.session-card.panel {
    border-left-color: #6C4DFF;
}

.session-card.workshop {
    border-left-color: #00AEEF;
}

.session-card.pitch {
    border-left-color: #16A34A;
}

.session-card.networking {
    border-left-color: #D4A81E;
}

.speakers-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.speaker-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background: var(--slate-100);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.speaker-title {
    color: var(--slate-700);
}

.highlights-section {
    padding: 4rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

/* Workshops Page Styles */
.workshops-detail {
    padding: 4rem 0;
}

.workshops-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.workshop-tab {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-700);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.workshop-tab.active {
    color: var(--brand-indigo);
    border-bottom-color: var(--brand-indigo);
}

.workshop-content {
    display: none;
}

.workshop-content.active {
    display: block;
}

.workshop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.workshop-date {
    display: inline-block;
    background: var(--brand-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workshop-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.agenda-section h3,
.speakers-section h3 {
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.agenda-timeline {
    border-left: 2px solid var(--brand-indigo);
    padding-left: 1.5rem;
}

.agenda-item {
    margin-bottom: 1.5rem;
    position: relative;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: -1.7rem;
    top: 0.3rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-indigo);
}

.agenda-time {
    font-weight: 600;
    color: var(--navy-900);
}

.agenda-title {
    color: var(--slate-700);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.speaker-card {
    text-align: center;
}

.speaker-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.5rem;
    background: var(--slate-100);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-900);
}

.speaker-title {
    font-size: 0.9rem;
    color: var(--slate-700);
}

.pricing-section {
    background: var(--slate-100);
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card.highlighted {
    border: 2px solid var(--brand-indigo);
    transform: scale(1.05);
}

.pricing-card h4 {
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.benefits-section {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.testimonials-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--slate-700);
}

.testimonial-author {
    border-top: 1px solid var(--slate-100);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--navy-900);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--slate-700);
}

/* Tickets Page Styles */
.early-bird-section {
    padding: 2rem 0;
}

.early-bird-alert {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    color: #333;
}

.alert-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
}

.alert-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.tickets-section {
    padding: 4rem 0;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ticket-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ticket-card.featured {
    border: 2px solid var(--brand-indigo);
    transform: scale(1.05);
}

.ticket-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--brand-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.ticket-type {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.ticket-date {
    color: var(--slate-700);
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    margin: 1.5rem 0;
}

.ticket-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.more-tickets-link {
    text-align: center;
    margin-top: 3rem;
}

.workshop-tickets-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workshop-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.workshop-header {
    margin-bottom: 2rem;
}

.workshop-date {
    display: inline-block;
    background: var(--brand-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workshop-card h3 {
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pricing-option {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--slate-100);
    border-radius: 0.5rem;
}

.pricing-option h4 {
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.all-tickets-section {
    padding: 4rem 0;
}

.tickets-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.ticket-accordion-item {
    border: 1px solid var(--slate-100);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--slate-100);
}

.accordion-header small {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--slate-700);
    margin-left: 0.5rem;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-header.active + .accordion-content {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--slate-100);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question.active + .faq-answer {
    padding: 0 0 1.5rem;
    max-height: 500px;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--navy-900);
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    margin-bottom: 1.5rem;
    color: var(--navy-900);
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    margin-bottom: 1rem;
    color: var(--success);
}

.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--navy-900);
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-indigo);
    box-shadow: 0 0 0 3px rgba(108, 77, 255, 0.1);
}

.team-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background: var(--slate-100);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.member-title {
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.member-contact {
    font-size: 0.9rem;
    color: var(--brand-indigo);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

/* Reminders Page Styles */
.dates-section {
    padding: 4rem 0;
}

.dates-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.dates-timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brand-indigo);
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date {
    min-width: 150px;
    font-weight: 600;
    color: var(--navy-900);
    padding-right: 2rem;
    text-align: right;
}

.timeline-content {
    padding-left: 2rem;
    flex-grow: 1;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.reminder-form-section {
    background: var(--slate-100);
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.reminder-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.checkbox-grid,
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
}

.checkbox-item input,
.radio-item input {
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .workshop-details {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .dates-timeline::before {
        left: 120px;
    }
    
    .timeline-date {
        min-width: 120px;
    }
    
    .checkbox-grid,
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}