  /* Newsletter */


.btn-primary {
display: inline-block;
background-color: #7b1e1e;
color: #fff !important;
border: none;
padding: 0.6rem 1.25rem;
border-radius: 4px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
font-size: 1rem;
text-align: center;
margin-top: 0.5rem;
}

.btn-primary:hover {
background-color: #5e1515;
}
  /* Best Restaurants section */
.best-restaurants {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  background: #fff;
  box-sizing: border-box;
}

.best-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.best-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.best-list a {
  text-decoration: none;
  font-size: 1rem;
  color: #555;
}

.best-list a:hover {
  color: #000;
  text-decoration: underline;
}
  .signup-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .signup-container input[type="email"] {
    padding: 0.6rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .signup-container button {
    background-color: #7b1e1e;
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }

  .newsletter-signup {
    background: #fff;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    border-radius: 8px;
  }
  