:root {
  --bg-1: #eef3f6;
  --bg-2: #dfe8ee;
  --card-bg: rgba(255, 255, 255, 0.96);
  --text-main: #1f2f3a;
  --text-soft: #5b6b75;
  --primary: #2b5c74;
  --accent: #9cb7c6;
  --phone: #245b4b;
  --shadow: 0 18px 45px rgba(24, 43, 56, 0.12);
  --radius: 24px;
}

* {
   box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.medical-card {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 60px 55px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-soft);
}

h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}

.role {
  margin-top: 18px;
  font-size: 22px;
  text-align: center;
}

.specialty {
  margin-top: 8px;
  font-size: 20px;
  color: var(--text-soft);
  line-height: 1.5;
  text-align: center;
}

.section-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-soft);
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 34px;
  color: var(--primary);
  letter-spacing: 1px;
  text-align: center;
}

.clinic-name,
.address,
.booking-text {
  text-align: center;
}

.clinic-name {
  margin-top: 10px;
  font-size: 20px;
}

.address {
  margin-top: 10px;
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.6;
}

h3 {
  margin: 0 0 22px;
  font-size: 23px;
  line-height: 1.45;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

.separator {
  width: 90px;
  height: 1px;
  margin: 34px auto;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.team-list li {
  padding: 8px 0;
  font-size: 20px;
}

.booking-text {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.phone {
  margin: 16px 0 0;
  text-align: center;
}

.phone a {
  font-size: 36px;
  font-weight: 700;
  color: var(--phone);
  text-decoration: none;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .card-inner {
    padding: 38px 24px;
    border-radius: 18px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .role,
  .specialty,
  .clinic-name,
  .address,
  .team-list li,
  .booking-text {
    font-size: 18px;
  }

  .phone a {
    font-size: 30px;
  }
}
