/* =============================
   GLOBAL
============================= */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  /* =============================
     HERO SECTION
  ============================= */
  
  .sponsorship-hero {
    background: linear-gradient(135deg, #2a7f62, #1f3d3a);
    color: white;
    text-align: center;
  }
  
  .sponsorship-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .sponsorship-hero p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1f3d3a;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  /* =============================
     WHY SPONSOR
  ============================= */
  
  .why-sponsor {
    background: #ffffff;
    text-align: center;
  }
  
  .why-sponsor h2 {
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .benefit-card {
    background: #f4f8f6;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  
  .benefit-card h3 {
    margin-bottom: 15px;
    color: #2a7f62;
  }
  
  /* =============================
     CURRENT SPONSORS
  ============================= */
  
  .current-sponsors {
    text-align: center;
  }
  
  .current-sponsors h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  
  .empty-state {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 2px dashed #ccc;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* =============================
     MOBILE RESPONSIVE
  ============================= */
  
  @media (max-width: 900px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .sponsorship-hero h1 {
      font-size: 2.2rem;
    }
  
    .sponsorship-hero p {
      font-size: 1rem;
    }
  }