 body {
      margin: 0;
      padding: 2rem;
      font-family: "Abel", sans-serif;
      background-color: #c8e0e4;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h1.title {
      color: #0e404d;
      font-size: 4rem;
      margin-bottom: 2rem;
      font-weight:;
    }

    .cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      width: 100%;
    }

    .card {
      background-color: rgb(248, 240, 240);
      width: 300px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 370px;
       object-fit:contain;
    }

    .card-content {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .card-content h2 {
      font-size: 1.3rem;
      color: #2596BE;
      margin: 0;
    }

    .card-content p {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.4;
      margin: 0;
    }

    .card-content a {
      align-self: start;
      text-decoration: none;
      color: #2596BE;
      border: 1px solid #2596BE;
      padding: 0.4rem 0.75rem;
      border-radius: 4px;
      font-size: 0.9rem;
      transition: background 0.2s ease;
    }

    .card-content a:hover {
      background-color: #2596BE;
      color: white;
    }

    @media (max-width: 650px) {
      .cards-container {
        flex-direction: column;
        align-items: center;
      }
    }