/* ===== CARDS SECTION ===== */
.cards-section {
    background: var(--color-dark-grey);
    padding: 4rem 0;
  }
  
  .cards-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-hero);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
  
  .card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  
  .card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-hero);
  }
  
  .card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555;
  }
  
  .cards-subtext {
    margin: 2rem auto;
    text-align: center;
    font-family: var(--font-body);
    max-width: 600px;
  }


  .card-text {
    padding: 0;
  }

  .card-text h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
  }
  
  .card-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-hero);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
  }
  
  .card-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 2rem;
  }