body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #e0f7fa 0%, #f8fdff 100%);
  color: #1c3144;
}

header {
  background: linear-gradient(90deg, #0093e9 0%, #80d0c7 100%);
  padding: 22px 0 15px 0;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

.clinic-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.75);
  object-fit: cover;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  margin: 0;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 60, 120, 0.2);
}

nav a {
  color: #fafdff;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #0a4e78;
  text-decoration: underline;
}

.hero {
  padding: 70px 30px 40px 30px;
  text-align: center;
  background: linear-gradient(100deg, #bfe9ff 40%, #fafffd 100%);
  border-radius: 30px;
  max-width: 800px;
  margin: 40px auto 0 auto;
  box-shadow: 0px 4px 20px #b1eaff55;
}

.hero h2 {
  color: #0779a1;
  font-size: 2em;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.2em;
  color: #276678;
  margin-bottom: 20px;
}

.cta-btn {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 28px;
  font-size: 1.18em;
  font-weight: bold;
  box-shadow: 0 2px 8px #aad6ec77;
  transition: background 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  background: #0093e9;
  box-shadow: 0 5px 14px #0086d17a;
}

section {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px;
  background: #ffffffee;
  border-radius: 20px;
  box-shadow: 0 3px 12px #e0e0e050;
}

ul,
ol {
  font-size: 1.08em;
  line-height: 1.7;
}

footer {
  background: linear-gradient(90deg, #80d0c7 0%, #0093e9 100%);
  color: #fff;
  text-align: center;
  padding: 16px 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 50px;
  font-size: 1.08em;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #aee1f9;
  border-radius: 7px;
  margin-bottom: 18px;
  font-size: 1em;
  background: #f7fbfd;
  box-sizing: border-box;
}

form button {
  background: #0779a1;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.08em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px #80d0c755;
  transition: background 0.18s;
}

form button:hover {
  background: #0093e9;
}

/* ── Services Preview Section (Home Page) ─────────────────── */

.services-preview {
  max-width: 1100px;
  padding: 44px 36px;
}

.section-title {
  text-align: center;
  color: #0779a1;
  font-size: 1.85em;
  margin: 0 0 8px 0;
}

.section-subtitle {
  text-align: center;
  color: #276678;
  font-size: 1.08em;
  margin: 0 0 38px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.service-card {
  background: linear-gradient(145deg, #f6fbff, #eaf7ff);
  border: 1px solid #ceeeff;
  border-radius: 20px;
  padding: 30px 24px 24px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0, 147, 233, 0.09);
  transition: transform 0.22s, box-shadow 0.22s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 147, 233, 0.18);
}

.service-icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e4f4ff, #c8ecff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 2px 10px rgba(79, 172, 254, 0.18);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  color: #0779a1;
  font-size: 1.18em;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.service-card p {
  color: #2d6e80;
  font-size: 0.95em;
  line-height: 1.65;
  margin: 0 0 18px 0;
}

.service-link {
  display: inline-block;
  color: #4facfe;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.service-link:hover {
  color: #0093e9;
  text-decoration: underline;
}

.view-all-services {
  text-align: center;
  margin-top: 40px;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 640px) {
  .header-brand {
    flex-direction: column;
    gap: 10px;
  }

  header h1 {
    font-size: 1.7em;
  }

  .clinic-logo {
    width: 60px;
    height: 60px;
  }

  .services-preview {
    padding: 30px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
