 :root {
            --primary-blue: #0a2540;
            --secondary-blue: #1d4e89;
            --accent-blue: #3a7bd5;
            --primary-orange: #ff6b35;
            --secondary-orange: #ff8e53;
            --light-bg: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #1e293b;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /*body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }*/

        .container11 {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.2rem;
        }

        h1 {
            font-size: 3rem;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        h2 {
            font-size: 2.2rem;
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 15px;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            border-radius: 2px;
        }

        h3 {
            font-size: 1.5rem;
            color: end-y;
        }
       

        /*p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--medium-gray);
        }*/

        a {
            text-decoration: none;
            /*color: var(--accent-blue);*/
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.9)), url('/images/jerusalem.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-top: 10px;
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
            text-align: center;
            margin-top: 10px;
        }

        .hero p {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2.5rem;
        }
        .hero h1{
            color: #ff8e53;      
        }

        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            /*margin-top: 1rem;*/
        }

        .cta-button1 {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            /*color: var(--white);*/
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
            font-size: 1.1rem;
            background-color: #d8711cc7;
            
        }

        .cta-button1:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            background-color: #ff8f536f;
        }

        /* Content Sections */
        .section {
            padding: 80px 0;
        }

        .section-alt {
            background-color: #170346;
            margin-top: -80px
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .content-block {
            margin-bottom: 50px;
        }
        .content-block p{
            color: #f8fafc;
        }
        .p2 {
            color: #1d4e89;
        }

        .icon-heading {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .icon-heading i {
            font-size: 2rem;
            color: var(--primary-orange);
        }
        .icon-heading h2{
            color: #3f87eb;
        }

        .highlight-box {
            background: linear-gradient(135deg, #205595, #071527);
            color: #f8fafc;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255,255,255,0.05);
            transform: rotate(30deg);
        }

        .highlight-box h3 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .highlight-box p {
            color: rgba(255,255,255,0.9);
        }

        .promo-badge {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
            margin-top: 20px;
        }

        /* Stats Section */
        .stats1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-item1 {
            text-align: center;
            padding: 30px 20px;
            background-color: #f8fafc;
            border-radius: 10px ;
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.511);
        }

        .stat-number1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--medium-gray);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.95)), url('/images/jerusalem.png') center/cover no-repeat;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            margin-bottom: 10px;
        }

        .cta-section h2 {
            color: var(--white);
        }

        .cta-section h2:after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-orange);
        }

        .cta-section p {
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255,255,255,0.9);
        }

        
        /* Footer */
        

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                height: 60vh;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .hero {
                height: 50vh;
            }
        }

        @media (max-width: 576px) {
            .highlight-box {
                padding: 30px;
            }
            
            .icon-heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }