/* Reset some default browser styles
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
  }
  
  .header-wrapper {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .header-wrapper h1 {
    font-family: 'Roboto Slab', serif;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px 0;
  }
  
  nav li {
    margin: 0 15px;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #ffd700;
  }
  
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h2 {
    margin-bottom: 20px;
  }
  
  #review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .review-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .review-card h3 {
    margin-bottom: 5px;
  }
  
  .review-card p {
    margin-bottom: 10px;
  }
  
  .review-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  
  .review-form input[type="text"],
  .review-form textarea,
  .review-form input[type="number"],
  .review-form input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  .review-form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  .review-form input[type="submit"]:hover {
    background-color: #555;
  }
   */