
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: #eeede0;
            font-family: 'Winky Sans', sans-serif;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .logo {
            text-align: center;
        }
        
        #logo-a {
            width: 174px;
            height: 60px;
            margin-right: 0;
        }
        
        #logo-b {
            width: 100px;
            height: 50px;
            padding: 17px;
            margin-left: 0;
            margin-top: 0;
        }
        
        .top-section {
            position: relative;
            text-align: center;
            padding: 40px 0;
            background: url(img/yb-top-clear2.svg) center;
            background-size: cover;
            min-height: 300px;
        }
        
        .top-section h2 {
            margin-bottom: 20px;
        }
        
        .logo-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .main-image {
            width: 100%;
            max-width: 250px;
            height: auto;
            margin: 30px auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .main-image img {
            max-width: 100%;
            height: auto;
        }
        
        .gallery {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
            background-color: #eeede0;
            position: relative;
            bottom: 0;
        }
        
        .gallery a{
            text-decoration: none;;
        }

        .image-card {
            width: 100%;
            max-width: 300px;
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
        }
        
        .image-card img {
            max-width: 100%;
            height: auto;
        }
        
        .image-card:hover {
            transform: translateY(-10px);
            cursor: pointer;
        }
        
        .footer {
            background-color: #18a17d;
            padding: 20px;
            text-align: center;
            margin-top: auto;
            width: 100%;
            border-top: 1px solid #ddd;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .social-icon {
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
        }
        
        .copyright {
            flex-grow: 1;
            text-align: center;
        }

        /* New Text Section Styling */
        .about-section {
            margin: 60px 0;
            position: relative;
            overflow: hidden;
            background: #eeede0;
            padding: 0 20px;
        }
        
        .about-section .background-curves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
       
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        .about-content-desktop {
            display: flex;
            width: 100%;
        }
        
        .about-content-mobile {
            display: none;
            width: 100%;
        }
        
        .about-left, .about-right {
            flex: 1;
            padding: 30px;
        }
        
        .logo-yellow-balloon {
            margin-bottom: 25px;
            max-width: 200px;
        }
        
        .logo-arabic {
            margin-bottom: 25px;
            max-width: 200px;
        }
        
        .txt-en {
            font-family: 'Winky Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .txt-ar {
            font-family: 'Baloo Bhaijaan 2', sans-serif;
            text-align: justify;
            color: #333;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 20px;
            direction: rtl;
        }

        .badge {
            position: relative;
            top: 32%;
            background: #f2ca36a1;
            width: 99%;
            text-align: center;
            border-radius: 3px;
            font-size: 16pt;
        }

        /* Media Queries for Responsive Design */
        @media (min-width: 768px) {
            #logo-a {
                margin-right: 121px;
            }
            
            #logo-b {
                margin-left: 127px;
                margin-top: -27px;
            }
            
            .gallery {
                bottom: 37px;
                flex-wrap: nowrap;
            }
            
            .top-section {
                min-height: 377px;
            }
            
            .image-card {
                margin-bottom: 0;
            }
            
            .about-content-desktop {
                display: flex;
            }
            
            .about-content-mobile {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .about-content-desktop {
                display: none;
            }
            
            .about-content-mobile {
                display: block;
            }
            
            .about-mobile-section {
                margin-bottom: 40px;
                padding: 20px;
                background-color: rgba(255, 255, 255, 0.7);
                border-radius: 15px;
            }
            
            .logo-containerX {
                justify-content: center;
                gap: 20px;
            }
            
            #logo-b {
                position: relative;
                bottom: 20px;
            }

            #logo-a {
                position: relative;
                right: 11px;
            }

            .main-image {
                margin: 30px auto;
            }
            
            .gallery {
                justify-content: center;
            }
            
            .image-card {
                margin-bottom: 50px;
            }
        }
    .card-footer {background: #f2ca46;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 600;
    color: #3f3d41;
    border-radius: 0 0 15px 15px;
    font-size: 23px;}