body {
  font-family: 'Inter', sans-serif;
  background-color: #F6EFE8;
  color: #4B3621;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #4B3621;
  padding: 1rem;
}

.logo {
  color: #00B8C4;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #F6EFE8;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #00B8C4 0%, #0ABAB5 100%);
  text-align: center;
  padding: 5rem 1.5rem;
  color: #F6EFE8;
}

.form-section {
  background-color: #fff;
  padding: 3rem 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

input, textarea, button {
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #4B3621;
}

button {
  background-color: #00B8C4;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background-color: #0ABAB5;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.review-card h4 {
  margin-bottom: 0.25rem;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-card img, .review-card video {
  margin-top: 1rem;
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
  object-fit: cover;
}
