.cards-section {
    text-align: center;
    color: white;
    padding: 4em 1em;
  }
  
  .cards-heading {
    font-family: 'Voga', serif;
    font-size: 3em;
    margin-bottom: 1em;
    position: relative;
  }
  
  .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
  }
  
  .card {
    background: #fff;
    color: #13313d;
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .card img {
    width: 250px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-body {
    background-color: #13313d;
    color: white;
    padding: 1em;
    text-align: left;
    
  }
  
  .card-body h3 {
    color: #a5afdd;
    margin-bottom: 0.3em;
    font-family: Helvetica, serif;
    
  }
   .card-body a h3 {
    text-decoration: none;
   }


  .card-body p {
    font-family:  "Segoe UI", "Helvetica Neue", sans-serif;
    letter-spacing: 1px;
    font-weight: 100;
  }


  .rating-container {
    text-align: center;
    background: white;
    padding: 20px 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }

  .rating-container h2 {
    color: #356786;
    font-family: Helvetica, serif;
  }
  
  .stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
  }
  
  .star {
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .star.hovered,
  .star.selected {
    color: #a5afdd;
  }
  
  #rating-value {
    margin-top: 10px;
    font-size: 18px;
    color: #13313d;
    font-family:  "Segoe UI", "Helvetica Neue", sans-serif;
    letter-spacing: 1px;
    font-weight: 100;
  }