/* Global layout */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5F7FA; /* Soft gray */
  color: #222;
  line-height: 1.6;
}

/* Header / Hero */
header {
  background-color: #003366; /* EH Deep Blue */
  padding: 40px 20px;
  text-align: center;
  color: white;
  border-bottom: 6px solid #0077CC; /* EH Bright Blue accent */
}

header h1 {
  font-size: 36px;
  margin: 0;
  font-weight: 700;
}

header p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

/* Logo blending */
.logo {
  width: 50%;
  max-width: 300px;
  border-radius: 18px;
  background-color: transparent;
  display: block;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.25);
  opacity: 0.92;
}

/* Main content */
main {
  max-width: 1100px;   /* wide enough for two columns */
  margin: 50px auto;
  padding: 0 20px;
  text-align: left;
}

/* Center text for top-level sections */
main > h2,
main > p {
  text-align: center;
}

/* Section headings */
h2 {
  color: #003366;
  font-size: 28px;
  margin-top: 40px;
  font-weight: 600;
}

p {
  font-size: 18px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 26px;
  background-color: #0077CC;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  margin: 25px auto 0 auto;   /* centers the button */
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #005FA3;
}

/* Footer */
footer {
  margin-top: 80px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #D9E2EC;
}

/* Physician section layout: two columns by default */
.physician-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 60px;
  padding: 0 20px;
}

/* Text column */
.physician-text {
  flex: 1 1 500px;
  max-width: 600px;
}

/* Align heading nicely with photo */
.physician-text h2 {
  margin-top: 0;
}

/* Photo column */
.physician-photo {
  display: flex;
  align-items: flex-start;
}

.physician-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.25);
}

/* Optional: stack on very narrow screens */
@media (max-width: 700px) {
  .physician-section {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .physician-text {
    max-width: 100%;
  }
}
