    body {
      font-family: Georgia, serif;
      margin: 0;
      background-color: #fdf8ed;
      color: #333;
    }
    .section-title {
      text-align: center;
      padding-top: 40px;
    }
    .section-title h2 {
      font-size: 2em;
      /* margin-bottom: 10px; */
    }
    .section-title p {
      font-size: 1em;
      color: #555;
    }
    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 40px 20px;
    }
    .card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      width: 280px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .badge {
      background-color: #5a6833;
      color: white;
      font-size: 0.8em;
      padding: 5px 10px;
      border-radius: 20px;
      display: inline-block;
      margin: 15px;
      font-family: 'Georgia', serif;
    }
    .card-content {
      padding: 0 20px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card h3 {
      font-size: 1.1em;
      margin-top: 10px;
      font-weight: bold;
    }
    .card p {
      font-size: 0.9em;
      color: #555;
      margin: 10px 0;
    }
    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em;
      margin-top: auto;
    }
    .card-footer a {
      color: #1d4d2c;
      text-decoration: none;
      font-weight: bold;
    }
    .card-footer a:hover {
      text-decoration: underline;
    }

