:root {
  --text: #222;
  --muted: #555;
  --brand: #b2186b;
  --bg: #fff;
  --card: #f8f9fb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
h1,
h2,
h3 {
  line-height: 1.25;
  color: #111;
}
h1 {
  font-size: 1.9rem;
  margin: 0 0 14px;
}
h2 {
  font-size: 1.35rem;
  margin: 26px 0 10px;
}
h3 {
  font-size: 1.1rem;
  margin: 18px 0 8px;
}
p {
  margin: 0 0 12px;
  color: var(--muted);
}
.card {
  background: var(--card);
  border-radius: 10px;
  padding: 14px;
  margin-top: 18px;
}
.cta a {
  color: #fff;
  background: var(--brand);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-block;
}
@media (max-width: 900px) {
  .seo-layout {
    flex-direction: column-reverse;
  }
  .seo-doctor-image-wrap {
    position: static;
    width: 100%;
  }
}
@media (max-width: 600px) {
  main {
    padding: 16px 12px 30px;
  }
  h1 {
    font-size: 1.55rem;
  }
}
.seo-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.seo-content {
  flex: 1 1 auto;
  min-width: 0;
}
.seo-doctor-image-wrap {
  flex: 0 0 300px;
  position: sticky;
  top: 20px;
  text-align: center;
  margin: 0;
}
.seo-doctor-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  display: inline-block;
}
.seo-doctor-details {
  margin-top: 14px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
}
.seo-doctor-row {
  display: flex;
  border-top: 1px solid #e5e5e5;
}
.seo-doctor-row:first-child {
  border-top: 0;
}
.seo-doctor-label {
  width: 42%;
  padding: 12px 10px;
  font-weight: 600;
  color: #555;
  background: #efefef;
}
.seo-doctor-value {
  width: 58%;
  padding: 12px 10px;
  color: #444;
}
.seo-doctor-value ul {
  margin: 0;
  padding-left: 18px;
}
.seo-doctor-value li {
  margin: 0 0 6px;
}
.seo-doctor-value li:last-child {
  margin-bottom: 0;
}
