/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   GLOBAL STYLES
===================== */
body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fb;
  color: #1f2937;
  line-height: 1.6;
}

/* =====================
   HEADER
===================== */
.header {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: white;
  text-align: center;
  padding: 60px 20px 55px;
}

.header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.header h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.95;
}

.header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* =====================
   LOGO
===================== */
.clinic-logo {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* =====================
   SECTIONS
===================== */
.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 32px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 22px;
  color: #0d6efd;
  border-left: 5px solid #0d6efd;
  padding-left: 14px;
}

/* =====================
   SERVICES LIST
===================== */
.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.services li {
  background: #f1f5ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease;
}

.services li:hover {
  transform: translateY(-3px);
}

/* =====================
   TEXT
===================== */
.section p {
  margin-bottom: 14px;
  font-size: 1rem;
}

/* =====================
   BUTTONS
===================== */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  background: #0d6efd;
  color: white;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 8px 22px rgba(13,110,253,0.35);
}

.btn:hover {
  background: #084298;
  transform: translateY(-3px);
}

.btn:active {
  transform: scale(0.96);
}

/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 28px 10px;
  font-size: 0.9rem;
  color: #6b7280;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.9rem;
  }

  .header h3 {
    font-size: 1.05rem;
  }

  .section {
    margin: 22px 15px;
    padding: 26px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
