body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}

nav {
  background: #6c5ce7;
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

header, section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  color: #2d3436;
}

.rate-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.note {
  font-style: italic;
  color: #636e72;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #6c5ce7;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #5a4ecb;
}

.phone {
  margin-top: 1rem;
  font-weight: bold;
}
