:root {
  --bg-light: #F8FAFC;
  --bg-gradient: linear-gradient(135deg, #F8FAFC 0%, #EFEFF4 100%);
  --primary-teal: #279fb4;
  --teal-dark: #0891B2;
  --teal-deep: #0E7490;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  min-height: 100vh;
  background: var(--bg-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-container {
  max-width: 960px;
  width: 92%;
  margin: 0 auto;
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Standalone Unobstructed Top Logo (Larger Display) */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main-logo-svg {
  width: min(820px, 94vw);
  height: auto;
  max-height: 52vh;
  filter: drop-shadow(0 16px 32px rgba(39, 159, 180, 0.25));
  transition: transform 0.4s ease;
}

.main-logo-svg:hover {
  transform: scale(1.02);
}

.main-logo-svg .st0 {
  fill: var(--primary-teal);
}

/* Info Section Below Logo */
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

/* Doctor Name (Slightly Smaller) */
.doctor-name {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* Expanded Full Credentials List */
.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.credentials-list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.3px;
  background: rgba(39, 159, 180, 0.08);
  border: 1px solid rgba(39, 159, 180, 0.2);
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

/* Tagline Below Credentials */
.tagline-group {
  margin: 0.2rem 0;
}

.tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 700;
  font-style: italic;
  color: var(--teal-dark);
  letter-spacing: -0.3px;
}

/* Contact Button Below Tagline */
.footer-group {
  margin-top: 0.2rem;
}

.minimal-email-btn {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid rgba(39, 159, 180, 0.35);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.minimal-email-btn:hover {
  background: var(--primary-teal);
  color: #FFFFFF;
  border-color: var(--primary-teal);
  box-shadow: 0 8px 24px rgba(39, 159, 180, 0.3);
  transform: translateY(-2px);
}

.minimal-email-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  border: 1px solid var(--primary-teal);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.minimal-email-display.hidden {
  display: none;
}

.email-address {
  color: var(--teal-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.email-address:hover {
  text-decoration: underline;
}

.minimal-copy-btn {
  background: rgba(39, 159, 180, 0.15);
  border: 1px solid rgba(39, 159, 180, 0.3);
  color: var(--text-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.minimal-copy-btn:hover {
  background: var(--primary-teal);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .page-container {
    gap: 1.2rem;
    padding: 1.5rem 0.8rem;
  }

  .credentials-list li {
    font-size: 0.85rem;
  }
}
