<style>
  .bento-section {
    background-color: #f9fafb;
    padding: 80px 20px;
    text-align: center;
  }

  .bento-section h2 {
    color: #97999b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }

  .bento-section h1 {
    color: #002D72;
    font-size: 36px;
    font-weight: 700;
    max-width: 75%;
    margin: 0 auto 0px;
    text-align: center;
  }

  .bento-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (min-width: 1024px) {
    .bento-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: minmax(300px, auto);
    }

    .bento-card:nth-child(2) {
      grid-row: span 1;
    }

    .bento-card:nth-child(1),
    .bento-card:nth-child(3) {
      grid-row: span 2;
    }
  }

  .bento-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    text-align: left;
  }

  .bento-card:hover {
    transform: translateY(-5px);
  }

  .bento-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }

  .bento-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
    object-fit: cover;
  }

  .bento-card h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .bento-card p {
    color: #4b5563;
    font-size: 14px;
  }
html, body {
  overflow-x: hidden;
}
.bento-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
</style>