* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", "Noto Sans Thai", sans-serif;
  color: #2c2a3a;
  background: #fbfaff;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #8e6bb0;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #2c2a3a;
  font-size: 0.9rem;
}

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #d4a8e0, #8e6bb0);
  color: #fff;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-line {
  background: #06c755;
  color: #fff;
}

.btn-call {
  background: #fff;
  color: #8e6bb0;
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 60px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #8e6bb0;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ecdff2;
}

.price {
  font-weight: 600;
  color: #8e6bb0;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.doctor-card {
  text-align: center;
  background: #fff;
  border: 1px solid #ecdff2;
  border-radius: 12px;
  padding: 24px;
}

.doctor-avatar {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.doctor-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.doctor-card p {
  font-size: 0.85rem;
  color: #7a7788;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid #ecdff2;
  border-radius: 12px;
  padding: 20px;
}

.review-card p {
  margin-bottom: 10px;
  font-style: italic;
}

.review-card span {
  font-size: 0.85rem;
  color: #7a7788;
}

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 8px;
}

.book-form {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.book-form input {
  padding: 10px 14px;
  border: 1px solid #ecdff2;
  border-radius: 8px;
  font-size: 0.9rem;
}

.book-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #8e6bb0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.map-placeholder {
  margin-top: 20px;
  height: 180px;
  background: #ecdff2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e6bb0;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 20px;
  color: #7a7788;
  font-size: 0.85rem;
  background: #fff;
}
