
    /* Section Styling */
    section {
        padding: 80px 20px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    h2 {
        font-size: 2.5em;
        margin-bottom: 30px;
        text-align: center;
        color: #333;
        position: relative;
    }
    
    section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--par-title-color);
        border-radius: 2px;
    }
    
    /* Mission Section */
    .mission {
        background: #f8f9fa;
    }
    
    .mission-content {
        text-align: center;
        font-size: 1.2em;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
        color: #555;
    }
  
    .cta {
        margin-top: 30px;
        animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        background: #043160;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.5s ease;
        backdrop-filter: blur(10px);
    }
    
    .cta-button:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    /* Social Media Cards */
    .social-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    
    .social-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .social-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--par-title-color);
    }
    
    .social-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .social-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        animation: float 3s ease-in-out infinite;
    }
    
    .social-card h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: #333;
    }
    
    .social-card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .social-link {
        display: inline-block;
        padding: 12px 25px;
        background: var(--par-title-color);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .social-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
    }
    
  /* Campaign Highlights Section */
  .highlights {
      background: var(--par-title-color);
      color: white;
  }
  
  .campaigns-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 50px;
      justify-items: center;
  }
  
  /* Card Stack Design */
  .campaign-card-stack {
      cursor: pointer;
      transition: transform 0.3s ease;
      text-align: center;
  }
  
  .campaign-card-stack:hover {
      transform: translateY(-5px);
  }
  
  .card-fan {
      position: relative;
      width: 200px;
      height: 140px;
      margin: 0 auto 20px;
      perspective: 1000px;
  }
  
  .fan-card {
      position: absolute;
      width: 160px;
      height: 120px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      overflow: hidden;
      transition: all 0.3s ease;
      transform-origin: bottom center;
  }
  
  .fan-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  /* Fan positioning */
  .fan-card.card-1 {
      transform: translateX(-10px) rotate(-15deg);
      z-index: 1;
  }
  
  .fan-card.card-2 {
      transform: translateX(0px) rotate(0deg);
      z-index: 2;
      left: 20px;
  }
  
  .fan-card.card-3 {
      transform: translateX(10px) rotate(15deg);
      z-index: 1;
      left: 40px;
  }
  
  /* Hover effects */
  .campaign-card-stack:hover .fan-card.card-1 {
      transform: translateX(-20px) rotate(-20deg);
  }
  
  .campaign-card-stack:hover .fan-card.card-3 {
      transform: translateX(20px) rotate(20deg);
      left: 40px;
  }
  
  .campaign-title {
      font-size: 1.2em;
      font-weight: bold;
      color: white;
      margin-top: 10px;
  }
  
  /* Modal Styles */
  .campaign-modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 20px;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
  }
  
  .modal-content {
      position: relative;
      margin: 6% auto;
      width: 90%;
      max-width: 1000px;
      height: 70vh;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      animation: modalSlideIn 0.3s ease;
  }
  
  @keyframes modalSlideIn {
      from {
          transform: translateY(-50px);
          opacity: 0;
      }
      to {
          transform: translateY(0);
          opacity: 1;
      }
  }
  
  .close-modal {
      position: absolute;
      top: 15px;
      right: 25px;
      color: #aaa;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10;
      transition: color 0.3s ease;
  }
  
  .close-modal:hover {
      color: #000;
  }
  
  .modal-layout {
      display: flex;
      height: 100%;
  }
  
  /* Left side - Images */
  .modal-images {
      flex: 1;
      background: #f8f9fa;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .image-carousel {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
  }
  
  .carousel-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
  }
  
  .carousel-track {
      display: flex;
      height: 100%;
      transition: transform 0.3s ease;
  }
  
  .carousel-slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .carousel-slide img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.8);
      border: none;
      font-size: 24px;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      transition: all 0.3s ease;
      z-index: 5;
  }
  
  .carousel-btn:hover {
      background: rgba(255,255,255,0.95);
      transform: translateY(-50%) scale(1.1);
  }
  
  .prev-btn {
      left: 20px;
  }
  
  .next-btn {
      right: 20px;
  }
  
  .carousel-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
  }
  
  .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .dot.active {
      background: white;
      transform: scale(1.2);
  }
  
  /* Right side - Info */
  .modal-info {
      flex: 1;
      padding: 40px;
      overflow-y: auto;
  }
  
  .modal-info h3 {
      color: #333;
      font-size: 2em;
      margin-bottom: 30px;
      border-bottom: 2px solid #667eea;
      padding-bottom: 10px;
  }
  
  .info-section {
      margin-bottom: 25px;
  }
  
  .info-section h4 {
      color: #667eea;
      font-size: 1.3em;
      margin-bottom: 10px;
      font-weight: 600;
  }
  
  .info-section p {
      color: #555;
      line-height: 1.6;
      font-size: 1.1em;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .campaigns-container {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
      }
      
      .card-fan {
          width: 180px;
          height: 120px;
      }
      
      .fan-card {
          width: 140px;
          height: 100px;
      }
      
      .modal-content {
          width: 95%;
          height: 90vh;
          margin: 5% auto;
      }
      
      .modal-layout {
          flex-direction: column;
      }
      
      .modal-images {
          height: 50%;
      }
      
      .modal-info {
          padding: 20px;
          height: 50%;
      }
      
      .modal-info h3 {
          font-size: 1.5em;
      }
      
      .carousel-btn {
          font-size: 18px;
          padding: 8px 12px;
      }
  }
  
  @media (max-width: 480px) {
      .campaigns-container {
          grid-template-columns: 1fr;
      }
  }

    
    /* Impact Section */
    .impact {
        background: #1a1a2e;
        color: white;
    }
    
    .impact h2 {
        color: white;
    }
    
    .impact h2::after {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .impact-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
        margin-top: 50px;
    }
    
    .stat-item {
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: scale(1.1);
    }
    
    .stat-number {
        font-size: 3em;
        font-weight: bold;
        color: #667eea;
        display: block;
        margin-bottom: 10px;
        animation: countUp 2s ease-out;
    }
    
    .stat-label {
        font-size: 1.1em;
        color: #ccc;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5em;
        }
        
        .hero p {
            font-size: 1.1em;
        }
        
        h2 {
            font-size: 2em;
        }
  
        .social-grid { 
          grid-template-columns: 1fr; 
        }
        
        .impact-stats {
            gap: 40px;
        }
        
        .stat-number {
            font-size: 2.5em;
        }
    }
    
    /* Scroll animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
