       
       body{
       		overflow: hidden;
       }
       .hero-slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background: #000;
        }

        .hero-slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide img{
            height: 100%;
        }

        .hero-slide.hero-active {
            opacity: 1;
            z-index: 1;
        }

        .hero-slide-img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
        }

        .hero-slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .hero-slide-title {
            font-size: 3rem;
            font-weight: 700;
            margin: 0 0 20px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .hero-slide-text {
            font-size: 1.5rem;
            margin: 0 0 30px 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }

        .hero-slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #005e5f;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .hero-slide-btn:hover {
            background: #005e5f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            color:#fff;
        }

        .hero-nav-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

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

        .hero-dot:hover {
            background: rgba(255,255,255,0.8);
        }

        .hero-dot.hero-dot-active {
            background: #fff;
            border-color: #005e5f;
            transform: scale(1.2);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.3);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            transition: background 0.3s ease;
        }

        .hero-arrow:hover {
            background: rgba(255,255,255,0.5);
        }

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

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

        .container-videos-grid{
            width: 80%;
            margin: 0 auto;
        }

        @media (max-width: 768px) {

            .container-videos-grid{
            width: 100%;
        }

            .hero-slider-container {
                height: 400px;
            }

            .hero-slide-title {
                font-size: 2rem;
            }

            .hero-slide-text {
                font-size: 1.1rem;
            }

            .hero-slide-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .hero-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .hero-arrow-prev {
                right: 15px;
            }

            .hero-arrow-next {
                left: 15px;
            }
        }

          .cat-slider-section {
            padding: 60px 20px;
            background: #fff;
        }

        .cat-slider-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .cat-slider-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .cat-slider-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

        .cat-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 60px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .cat-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s ease;
        }

        .cat-slide-item {
            flex: 0 0 calc((100% - 80px) / 5);
            min-width: calc((100% - 80px) / 5);
            cursor: pointer;
            text-align: center;
        }

        .cat-slide-image-box {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .cat-slide-item:hover .cat-slide-image-box {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

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

        .cat-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            padding: 15px;
            color: #fff;
        }

        .cat-slide-name {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
            text-align: center;
            color: #fff;
        }

        .cat-arrow-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #2c3e50;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .cat-arrow-btn:hover:not(:disabled) {
            background: #3498db;
            color: #fff;
            border-color: #3498db;
        }

        .cat-arrow-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .cat-arrow-btn.hidden {
            display: none;
        }

        .cat-arrow-prev {
            right: 0;
        }

        .cat-arrow-next {
            left: 0;
        }

        @media (max-width: 768px) {
            .cat-slider-title {
                font-size: 1.8rem;
            }

            .cat-slider-wrapper {
                padding: 0 50px;
            }

            .cat-slide-item {
                flex: 0 0 calc((100% - 15px) / 2);
                min-width: calc((100% - 15px) / 2);
            }

            .cat-slider-track {
                gap: 15px;
            }

            .cat-arrow-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .cat-slide-name {
                font-size: 0.95rem;
            }
        }

        
        .about-section {
            padding: 20px 20px;
            background: linear-gradient(135deg, #00725d 0%, #005e5e 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,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"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .about-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-title {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            font-weight: 400;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .about-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .card-icon {
            width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00715c 0%, #005a60 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .card-text {
            font-size: 1.5rem;
            line-height: 1.8;
            color: #555;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-box {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            background: rgba(255,255,255,0.25);
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

        .timeline-section {
            background: #fff;
            padding: 60px 40px;
            border-radius: 20px;
            margin-top: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .timeline-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 40px;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #00715c 0%, #005a60 100%);
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-left: 0;
            padding-bottom: 40px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-left: 0;
            padding-right: 50%;
        }

        .timeline-content {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            width: 85%;
            margin-right: 30px;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 0;
            margin-left: 30px;
        }

        .timeline-dot {
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            width: 20px;
            height: 20px;
            background: #fff;
            border: 4px solid #667eea;
            border-radius: 50%;
            top: 25px;
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }

        .timeline-text {
            font-size: 1.5rem;
            line-height: 1.7;
            color: #555;
        }

        @media (max-width: 768px) {
            .about-title {
                font-size: 2rem;
            }

            .about-subtitle {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .about-card {
                padding: 30px;
            }

            .stats-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .timeline::before {
                right: 20px;
                transform: none;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 0;
                padding-right: 0;
            }

            .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                width: 100%;
                margin-right: 0;
                margin-left: 0;
            }

            .timeline-dot {
                right: 11px;
                transform: none;
            }
        }

         .about-home-section {
            padding: 20px 20px;
            background: #fff;
        }

      

        .about-wrapper {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 60px;
            align-items: center;
        }

        .image-side {
            position: relative;
        }

        .main-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
            position: relative;
            z-index: 1;
        }

        .image-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 100%;
            height: 500px;
               background: linear-gradient(135deg, #00715c 0%, #005a60 100%);
            border-radius: 20px;
            z-index: 0;
        }

        .stats-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: #fff;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 700;
           background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .badge-text {
            font-size: 1.2rem;
            color: #555;
            font-weight: 600;
        }

        .content-side {
            padding-right: 20px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 20px;
                background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            color: #fff;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .section-description {
            font-size: 1.5rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .features-list {
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: #e9ecef;
            transform: translateX(-5px);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
                background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-left: 15px;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 1.5rem;
            color: #2c3e50;
            font-weight: 500;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
                background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            border-radius: 12px;
            color: #fff;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1.3rem;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
               background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            color: #fff;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
            color: #fff;
        }

        @media (max-width: 968px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-side {
                order: 2;
            }

            .content-side {
                order: 1;
                padding-right: 0;
            }

            .main-image {
                height: 400px;
            }

            .image-overlay {
                height: 400px;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-row {
                grid-template-columns: 1fr;
            }
        }

                .videos-section {
            padding: 20px 20px;
            background: #fff;
        }


        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 20px;
            background: #00725d;
            color: #fff;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 1.6rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .video-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 114, 93, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 114, 93, 0.2);
            border-color: #00725d;
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            overflow: hidden;
            background: #000;
        }

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

        .buttons-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            font-size: 1.4rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #00725d;
            color: #fff;
        }

        .btn-primary:hover {
            background: #005a4a;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 114, 93, 0.3);
        }

        .btn-secondary {
            background: #fff;
            color: #00725d;
            border: 2px solid #00725d;
        }

        .btn-secondary:hover {
            background: #00725d;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 114, 93, 0.3);
        }

        .hidden {
            display: none;
        }

        @media (max-width: 1200px) {
            .videos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 968px) {
            .section-title {
                font-size: 2rem;
            }

            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .buttons-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .videos-grid {
                grid-template-columns: 1fr;
            }
        }

        
      

       
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            margin-top: 50px;
        }

        .section-header h2 {
            font-size: 42px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .section-header p {
            font-size: 18px;
            color: #718096;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            padding: 40px 60px;
            direction: ltr;
        }

        .slider-wrapper {
            display: flex;
            gap: 25px;
            transition: transform 0.5s ease;
        }

        .partner-slide {
            min-width: 200px;
            height: 150px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .partner-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .partner-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
           background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
        }

        .slider-button.prev {
            left: 10px;
        }

        .slider-button.next {
            right: 10px;
        }

        @media (max-width: 768px) {
            .slider-container {
                padding: 40px 50px;
            }

            .partner-slide {
                min-width: 150px;
                height: 120px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .slider-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* أنيميشن الظهور */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .partners-section {
            animation: fadeIn 0.8s ease-out;
        }
        
        
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
             background: linear-gradient(135deg, #00725d 0%, #005a5f 100%);
            border-radius: 2px;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .slider-track {
            display: flex;
            animation: scroll 80s linear infinite;
            width: fit-content;
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        .slide {
            flex: 0 0 350px;
            margin: 0 15px;
        }

        .slide-content {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 250px;
            width: 250px;
        }

        .slide-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .slide-link {
            display: block;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .slide-content:hover .slide-image {
            transform: scale(1.1);
        }

        /* تكرار الصور لضمان حركة مستمرة */
        .slider-track::after {
            content: '';
            display: block;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .container {
                padding: 20px;
            }

            .slide {
                flex: 0 0 250px;
            }

            .slide-content {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }

            .slide {
                flex: 0 0 200px;
                margin: 0 10px;
            }

            .slide-content {
                height: 180px;
            }
        }