body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0a0b;
  color: #f2f4f3;
}

.header {
  background-color: #343a40;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #f8f9fa;
  font-family: 'Playfair Display', serif;
}

.nav a {
  margin-left: 20px;
  color: #dee2e6;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: #adb5bd;
}

.testimonials {
  padding: 80px 20px 40px;
  text-align: center;
}

.testimonials h1 {
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

.testimonial-box {
  background-color: #1a1b1e;
  padding: 30px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 6px 20px rgba(0,255,200,0.05);
}

.testimonial-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-box span {
  font-weight: 600;
  color: #00ffcc;
}

.contact-us {
  padding: 60px 20px;
  text-align: center;
}

.contact-us h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #1c1e21;
  color: #ffffff;
  font-size: 1rem;
}

.contact-form button {
  background-color: #00ffcc;
  color: #000000;
  font-weight: 600;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.85;
}

.footer {
  background-color: #0d0a0b;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

#contact form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#contact input,
#contact textarea {
  width: 100%;
  padding: 0.9rem;
  resize: none;
  margin-bottom: 1rem;
  background-color: #111;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: white;
  box-sizing: border-box; 
}
#contact button {
  width: 100%;
  padding: 1rem;
  background: cyan;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

textarea {
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}
