    :root {
            --primary-blue: #1565C0;       /* Deep trustworthy blue */
            --light-blue: #E3F2FD;        /* Soft blue background */
            --accent-yellow: #f1c152;;     /* Vibrant yellow for highlights */
            --white: #FFFFFF;
            --dark: #212121;
            --gray: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            overflow-x: hidden;
            background-color: var(--light-blue);
        }
        
        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background-color: var(--white);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.8rem 5%;
            background-color: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo img {
            height: 42px;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .logo img {
            height: 36px;
        }
        
        .logo-text {
            font-weight: 700;
            color: var(--primary-blue);
            font-size: 1.6rem;
            letter-spacing: 0.5px;
        }
        
        .logo-text span {
            color: var(--accent-yellow);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .nav-links li {
            margin-left: 1.8rem;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent-yellow);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
            border-radius: 3px;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary-blue), #0D47A1);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.4s ease;
            margin-left: 1.5rem;
            box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #0D47A1, var(--primary-blue));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(21, 101, 192, 0.4);
            
        }
        
        /* Hero Section */
    .hero {
  height: 115vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
              url('https://i.pinimg.com/736x/3f/e0/ea/3fe0ea69a9ae24fe2f620986764cf2ed.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: var(--white);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

        
        .hero-content {
            max-width: 650px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .hero h1 span {
            color: var(--accent-yellow);
            position: relative;
        }
        
        .hero h1 span:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            background: var(--accent-yellow);
            bottom: 8px;
            left: 0;
            z-index: -1;
            opacity: 0.4;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            font-weight: 300;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        
        .primary-btn {
            background: var(--accent-yellow);
            color: var(--dark);
            padding: 1.1rem 2.5rem;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .primary-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(255, 214, 0, 0.4);
            background: #FFC400;
        }
        
        .secondary-btn {
            background: transparent;
            color: white;
            padding: 1.1rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .secondary-btn:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.5);
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .floating-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 2px 10px;
       
            width: 280px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.5s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .floating-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .floating-card i {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .floating-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: white;
        }
        
        .floating-card p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
        }
        
        /* Animated Background Elements */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 214, 0, 0.08);
            z-index: 0;
        }
        
        .circle-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -200px;
            animation: pulse 8s infinite ease-in-out;
        }
        
        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            left: -100px;
            animation: pulse 10s infinite ease-in-out 2s;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.1); opacity: 0.15; }
            100% { transform: scale(1); opacity: 0.1; }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .floating-elements {
                display: none;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }
     

    /* About Section Styles */
    .about-section {
        padding: 5rem 0;
        background-color: var(--white);
        position: relative;
        overflow: hidden;
        background-image: radial-gradient(circle at 10% 20%, rgba(227, 242, 253, 0.3) 0%, rgba(255, 255, 255, 0) 30%);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
    }
    
    .header-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .decoration-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
        opacity: 0.6;
    }
    
    .decoration-dot {
        width: 10px;
        height: 10px;
        background: var(--accent-yellow);
        border-radius: 50%;
        margin: 0 15px;
        box-shadow: 0 0 10px rgba(255, 214, 0, 0.5);
    }
    
    .section-header h2 {
        font-size: 3rem;
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .section-header h2 span {
        color: var(--accent-yellow);
        position: relative;
        display: inline-block;
    }
    
    .section-header h2 span:after {
        content: '';
        position: absolute;
        width: calc(100% + 20px);
        height: 12px;
        background: var(--accent-yellow);
        bottom: 8px;
        left: -10px;
        z-index: -1;
        opacity: 0.3;
        transform: rotate(-2deg);
    }
    
    .subtitle {
        font-size: 1.3rem;
        color: var(--gray);
        font-weight: 300;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .subtitle span {
        color: var(--primary-blue);
        font-weight: 500;
        position: relative;
    }
    
    .subtitle span:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--accent-yellow);
        bottom: 2px;
        left: 0;
        opacity: 0.5;
    }
    
    .about-content {
        display: flex;
        gap: 5rem;
        align-items: center;
    }
    
    .about-text {
        flex: 1;
        position: relative;
        padding: 2rem;
    }
    
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(21, 101, 192, 0.05);
        z-index: -1;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        left: -50px;
        animation: float 8s ease-in-out infinite;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
        animation: float 10s ease-in-out infinite 2s;
    }
    
    @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(10px, 10px) rotate(5deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
    }
    
    .about-text p {
        margin-bottom: 2rem;
        line-height: 1.8;
        color: var(--dark);
        font-size: 1.1rem;
        position: relative;
    }
    
    .about-text p.lead {
        font-size: 1.4rem;
        font-weight: 500;
        color: var(--primary-blue);
        padding-left: 2rem;
        border-left: 4px solid var(--accent-yellow);
    }
    
    .highlight {
        color: var(--primary-blue);
        font-weight: 600;
        position: relative;
    }
    
    .highlight:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 6px;
        background: var(--accent-yellow);
        bottom: 2px;
        left: 0;
        z-index: -1;
        opacity: 0.3;
    }
    
    .feature-box {
        display: flex;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 1.5rem;
        background: rgba(227, 242, 253, 0.3);
        border-radius: 12px;
        border-left: 4px solid var(--accent-yellow);
        transition: all 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-5px);
        background: rgba(227, 242, 253, 0.5);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-blue);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .feature-text h3 {
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    
    .feature-text p {
        margin: 0;
        color: var(--gray);
        font-size: 1rem;
    }
    
    .about-image {
        flex: 1;
        position: relative;
    }
    
    .image-container {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        position: relative;
        transform: perspective(1000px) rotateY(-5deg);
        transition: all 0.5s ease;
    }
    
    .image-container:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .main-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2rem;
        background: linear-gradient(to top, rgba(21, 101, 192, 0.8), transparent);
        color: white;
    }

 .carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      gap: 20px;
      width: fit-content;
      animation: scrollSlider 60s linear infinite;
    }

    .objective-card {
      flex: 0 0 auto;
      width: 300px;
      height: 380px;
      /* background: #fff; */
      border-radius: 12px;
      padding: 1.5rem;
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
      transition: transform 0.3s;
    }

    .objective-card:hover {
      transform: scale(1.05);
    }

   
    .objective-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .objective-card p {
      font-size: 0.95rem;
      color: #555;
    }

    @keyframes scrollSlider {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Arrow buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      font-size: 1.5rem;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 1;
      border-radius: 50%;
    }

    .nav-btn:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .left-btn {
      left: 10px;
    }

    .right-btn {
      right: 10px;
    }

    @media (max-width: 768px) {
      .objective-card {
        width: 250px;
        height: 350px;
      }
    }

    @media (max-width: 480px) {
      .objective-card {
        width: 200px;
        height: 300px;
      }
    }

    
    .overlay-content {
        max-width: 80%;
    }
    
    .overlay-content i {
        color: var(--accent-yellow);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .overlay-content p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
        font-style: italic;
    }
    
    .author {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        background: var(--light-blue);
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-blue);
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--gray);
        font-weight: 500;
        margin-top: 0.3rem;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .about-content {
            gap: 3rem;
        }
    }
    
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
        }
        
        .about-text, .about-image {
            width: 100%;
        }
        
        .image-container {
            transform: none;
        }
    }
    
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 2.4rem;
        }
        
        .subtitle {
            font-size: 1.1rem;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 576px) {
        .section-header h2 {
            font-size: 2rem;
        }
        
        .feature-box {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
    }

    /* Objectives Section Styles */
    .objectives-section {
        /* padding: 8rem 0; */
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
        padding-bottom: 20px;
    }
    
    .objectives-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        /* width: 100%; */
        height: 800px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%231565C0" opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
        background-size: cover;
        z-index: 0;
    }
    
    .container {
        position: relative;
        z-index: 1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .section-header h2 span {
        color: var(--accent-yellow);
        position: relative;
    }
    
    .section-header h2 span:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 6px;
        background: var(--accent-yellow);
        bottom: 8px;
        left: 0;
        z-index: -1;
        opacity: 0.4;
    }
    
    .divider {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .divider-line {
        width: 60px;
        height: 2px;
        background: var(--primary-blue);
        opacity: 0.3;
    }
    
    .divider-icon {
        margin: 0 1rem;
        color: var(--primary-blue);
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        color: var(--gray);
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .objectives-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 0 2rem;
    }
    
    /* .objective-card {
        height: 280px;
        perspective: 1000px;
        cursor: pointer;
        position: relative;
        transition: transform 0.6s ease;
    } */
    
    /* .objective-card:hover {
        transform: translateY(-10px);
    } */
    
    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .card-front {
        background: white;
        transform: rotateY(0deg);
    }
    
    .card-back {
        background: var(--primary-blue);
        color: white;
        transform: rotateY(180deg);
        padding: 1.5rem;
    }
    
    .objective-card.flipped .card-front {
        transform: rotateY(180deg);
    }
    
    .objective-card.flipped .card-back {
        transform: rotateY(360deg);
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-blue), #0D47A1);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
    }
    
    .card-front h3 {
        color: var(--primary-blue);
        margin-bottom: 0.8rem;
        font-size: 1.4rem;
    }
    
    .card-front p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hover-indicator {
        color: var(--primary-blue);
        font-size: 1rem;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
        40% {transform: translateY(-10px);}
        60% {transform: translateY(-5px);}
    }
    
    .back-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--accent-yellow);
    }
    
    .back-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .tech-icons, .finance-icons, .eco-icons, 
    .trade-icons, .policy-icons, .innovation-icons,
    .resilience-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        font-size: 1.5rem;
        color: rgba(255,255,255,0.8);
    }
    
    .tech-icons i:hover { color: #FFD600; }
    .finance-icons i:hover { color: #4CAF50; }
    .eco-icons i:hover { color: #8BC34A; }
    .trade-icons i:hover { color: #00BCD4; }
    .policy-icons i:hover { color: #9C27B0; }
    .innovation-icons i:hover { color: #FF9800; }
    .resilience-icons i:hover { color: #F44336; }
    
    /* Floating animation for cards */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    
    .objective-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
    .objective-card:nth-child(2) { animation: float 6s ease-in-out infinite 0.5s; }
    .objective-card:nth-child(3) { animation: float 6s ease-in-out infinite 1s; }
    .objective-card:nth-child(4) { animation: float 6s ease-in-out infinite 1.5s; }
    .objective-card:nth-child(5) { animation: float 6s ease-in-out infinite 2s; }
    .objective-card:nth-child(6) { animation: float 6s ease-in-out infinite 2.5s; }
    .objective-card:nth-child(7) { animation: float 6s ease-in-out infinite 3s; }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .objectives-container {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 2.2rem;
        }
        
        .objective-card {
            height: 250px;
        }
    }
    
    @media (max-width: 576px) {
        .objectives-container {
            grid-template-columns: 1fr;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
    }
:root {
            --primary: #2a5c9a;
            --secondary: #f7931e;
            --accent: #e63946;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary), #1a3a6a);
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        header .content {
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .highlight {
            color: var(--secondary);
            font-weight: 700;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            width: 120px;
            /* padding: 1rem 2rem; */
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
            background-color: #d62f3d;
        }
        
        .opportunities-section {
            padding: 4rem 0;
            text-align: center;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--secondary);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .contact-section {
            background-color: var(--primary);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
        }
        
        .contact-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .contact-content {
            position: relative;
            z-index: 1;
        }
        
        .contact-heading {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .phone-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 1.5rem 0;
            color: var(--secondary);
            display: inline-block;
        }
        
        .hashtags {
            margin-top: 2rem;
            font-size: 1.2rem;
            opacity: 0.8;
        }
        
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--accent);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.6);
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .floating-cta:hover {
            transform: scale(1.1);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
            }
        }
        
       .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto; /* ✅ allow scrolling if content is too tall */
    padding: 2rem; /* ✅ add some space around the content */
}

        
    .modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh; /* ✅ avoid exceeding the screen height */
    overflow-y: auto;  /* ✅ scroll form content if it's still too tall */
}

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #1a3a6a;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .phone-number {
                font-size: 1.8rem;
            }
        }
   
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary), #1a3a6a);
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        }
        
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        header .content {
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .highlight {
            color: var(--secondary);
            font-weight: 700;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
            background-color: #d62f3d;
        }
        
        .opportunities-section {
            padding: 4rem 0;
            text-align: center;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--secondary);
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            background: rgba(42, 92, 154, 0.1);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .contact-section {
            background-color: var(--primary);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
            margin-top: 4rem;
        }
        
        .contact-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .contact-content {
            position: relative;
            z-index: 1;
            padding-top: 3rem;
        }
        
        .contact-heading {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .phone-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 1.5rem 0;
            color: var(--secondary);
            display: inline-block;
        }
        
        .hashtags {
            margin-top: 2rem;
            font-size: 1.2rem;
            opacity: 0.8;
        }
        
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--accent);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.6);
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .floating-cta:hover {
            transform: scale(1.1);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
            }
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: modalFadeIn 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.2);
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--accent);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.8);
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 92, 154, 0.2);
        }
        
        .submit-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(42, 92, 154, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(42, 92, 154, 0.4);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-header h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .form-header p {
            color: #666;
        }
        
        .success-message {
            display: none;
            text-align: center;
            padding: 2rem;
        }
        
        .success-message .icon {
            font-size: 4rem;
            color: var(--success);
            margin-bottom: 1rem;
        }
        
        .success-message h3 {
            color: var(--success);
            margin-bottom: 1rem;
        }
        
        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .phone-number {
                font-size: 1.8rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .benefit-card {
                min-height: auto;
            }
            
            .contact-section {
                clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
            }
        }
       
        /* Conference Agenda Styles */
        .conference-agenda {
            padding: 8rem 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-yellow));
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            /* margin-bottom: 4rem; */
            display: flex;
            justify-content: center;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid var(--primary-blue);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            top: 30px;
        }

        .timeline-content {
            width: 45%;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            opacity: 0;
        }

        .animate-left {
            transform: translateX(-50px);
            animation: slideInLeft 0.6s forwards;
        }

        .animate-right {
            transform: translateX(50px);
            animation: slideInRight 0.6s forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .timeline-item:nth-child(odd) .timeline-content {
          margin-left: auto;
            margin-right: 0;
        }

        .timeline-item:nth-child(even) .timeline-content {
           
              margin-right: auto;
            margin-left: 0;
        }

        .session-tag {
            background: var(--primary-blue);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-content h3 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .session-details ul {
            list-style: none;
            padding: 0;
        }

        .session-details li {
            margin-bottom: 0.8rem;
            padding-left: 1.8rem;
            position: relative;
            color: var(--dark);
        }

        .session-details li i {
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--accent-yellow);
        }

        .session-time {
            margin-top: 1.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(21, 101, 192, 0.1);
            border-radius: 20px;
        }

        .panel-grid {
            display: grid;
            grid-template-columns: repeat(2, 6fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .panel-card {
            background: rgba(227, 242, 253, 0.5);
            padding: 1.5rem;
            width: 200px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-yellow);
            transition: all 0.3s ease;
        }

        .panel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .panel-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .panel-card h4 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .panel-card ul {
            list-style: none;
            padding: 0;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .panel-card li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.2rem;
        }

        .panel-card li:before {
            content: '•';
            color: var(--accent-yellow);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .speaker-highlight {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(255, 214, 0, 0.1);
            border-radius: 8px;
            border-left: 4px solid var(--accent-yellow);
        }

        .speaker-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .speaker-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .speaker-info h5 {
            color: var(--primary-blue);
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }

        .speaker-info p {
            color: var(--gray);
            font-size: 0.8rem;
            margin: 0;
        }

        .network-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .network-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 3px solid var(--primary-blue);
        }

        .network-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .network-card i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: block;
        }

        .network-card p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }

        /* Outcomes Section */
        .outcomes-section {
            /* padding: 6rem 0; */
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .outcome-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border-bottom: 4px solid var(--accent-yellow);
        }

        .outcome-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .outcome-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
        }

        .outcome-icon {
            width: 70px;
            height: 70px;
            background: rgba(21, 101, 192, 0.1);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .outcome-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .outcome-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .outcome-arrow {
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            transition: all 0.3s ease;
        }

        .outcome-card:hover .outcome-arrow {
            background: var(--accent-yellow);
            color: var(--dark);
            transform: translateX(5px);
        }

        /* Attendees Section */
        .attendees-section {
            /* padding: 6rem 0; */
            background: white;
        }

        .attendees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .attendee-card {
            background: white;
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(21, 101, 192, 0.1);
        }

        .attendee-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(21, 101, 192, 0.3);
        }

        .attendee-icon {
            width: 60px;
            height: 60px;
            background: rgba(21, 101, 192, 0.1);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .attendee-card:hover .attendee-icon {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.1);
        }

        .attendee-card h3 {
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .attendee-card p {
            color: var(--gray);
            font-size: 0.85rem;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .timeline-line {
                left: 40px;
            }

            .timeline-item {
                justify-content: flex-start;
            }

            .timeline-dot {
                left: 40px;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }

            .panel-grid {
                grid-template-columns: 1fr;
            }

            .network-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.2rem;
            }

            .timeline-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .outcomes-grid,
            .attendees-grid {
                grid-template-columns: 1fr;
            }
        }
