:root {
  --bg-color: #2b3e75;
  --text-color: #f1f5f9;
  --link-color: #f1f5f9;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: clamp(20px, 6.5vw, 28px);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(32px, 8vw, 56px) clamp(16px, 5vw, 24px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.logo-container {
  background-color: #ffffff;
  display: inline-flex;
  padding: clamp(24px, 6vw, 32px) clamp(32px, 10vw, 48px);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 95%;
  max-width: 700px;
  box-sizing: border-box;
}

.logo-container img {
  max-height: clamp(120px, 30vw, 160px);
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.48);
}

.info-section {
  margin-bottom: 32px;
}

.info-section p {
  margin: 0 0 10px 0;
}

.doctor-name {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 4px;
}

.address-line {
  font-size: 0.9em;
  color: #e2e8f0;
}

.phone-button {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9em;
  margin-top: 16px;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4), 0 2px 4px -2px rgba(37, 99, 235, 0.4);
  transition: all 0.2s ease-in-out;
}

.phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.5), 0 4px 6px -4px rgba(37, 99, 235, 0.5);
  opacity: 1;
}

.phone-button:active {
  transform: translateY(0);
}

.hours-section {
  margin-bottom: 40px;
}

.hours-section p {
  margin: 0;
  color: #cbd5e1;
}

.map-container {
  width: 95%;
  max-width: 700px;
  aspect-ratio: 1 / 1;
  border-radius: clamp(16px, 5vw, 24px);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 600px) {
  .map-container {
    aspect-ratio: 13 / 9;
  }
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  background-color: transparent;
}

.footer-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px clamp(16px, 5vw, 24px);
  box-sizing: border-box;
  text-align: center;
}

.footer-content p {
  margin: 0;
  font-size: 15px;
  color: #94a3b8;
}

@media (min-width: 1024px) {

  .container,
  .footer-content {
    width: 80%;
    max-width: 800px;
  }

  body {
    font-size: 18px;
  }

  .logo-container {
    width: 100%;
    max-width: 800px;
    padding: 24px 40px;
  }

  .logo-container img {
    max-height: 100px;
    width: 100%;
  }

  .map-container {
    width: 100%;
    max-width: 800px;
  }
}