#offerings {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
  }
  
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  
  .offering-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.15);
  }
  
  .offering-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .offering-icon i {
    font-size: 28px;
    color: #4361ee;
  }
  
  .offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #212529;
  }
  
  .offering-card p {
    color: #6c757d;
    margin-bottom: 20px;
  }
  
  .offering-features {
    padding-left: 20px;
  }
  
  .offering-features li {
    color: #495057;
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
  }
  
  .offering-features li:before {
    content: "✓";
    color: #4361ee;
    position: absolute;
    left: -20px;
    font-weight: bold;
  }
  
  /* Media queries for responsiveness */
  @media (min-width: 768px) {
    .offerings-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .offerings-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* For tablet view, make it 2x2 grid */
  @media (max-width: 991px) and (min-width: 768px) {
    .offerings-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }