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

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  /* =============================
     HERO
  ============================= */
  
  .resources-hero {
    background: linear-gradient(135deg, #2a7f62, #1f3d3a);
    color: white;
    text-align: center;
  }
  
  .resources-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .resources-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* =============================
     RESOURCE GRID
  ============================= */
  
  .resources-list .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .resource-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .resource-card:hover {
    transform: translateY(-5px);
  }
  
  .resource-card h3 {
    margin-bottom: 15px;
    color: #2a7f62;
  }
  
  .resource-card p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .resource-card a {
    text-decoration: none;
    font-weight: 600;
    color: #1f3d3a;
  }
  
  .resource-card a:hover {
    text-decoration: underline;
  }
  
  /* =============================
     DISCLAIMER
  ============================= */
  
  .resources-disclaimer {
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #ddd;
  }
  
  .resources-disclaimer p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #555;
  }
  
  /* =============================
     MOBILE RESPONSIVE
  ============================= */
  
  @media (max-width: 900px) {
    .resources-list .container {
      grid-template-columns: 1fr;
    }
  
    .resources-hero h1 {
      font-size: 2.2rem;
    }
  
    .resources-hero p {
      font-size: 1rem;
    }
  }