/* Dr. Krutika's Wellness & Aesthetic Clinic - Main Stylesheet */
:root {
  --primary: #dd9d67;
  --background: #fff;
}

body {
  background: var(--background);
  color: #222;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  background: var(--background);
  border-bottom: 4px solid var(--primary);
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}

.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.clinic-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary);
  margin: 0.2rem 0 0.5rem 0;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.section {
  max-width: 900px;
  margin: 2rem auto;
  background: var(--background);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(221,157,103,0.08);
  padding: 2rem 1.5rem;
}

.section-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 6px solid var(--primary);
  padding-left: 0.7rem;
  font-weight: 600;
}

ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
  color: #333;
}

li {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.contact {
  background: var(--primary);
  color: #fff;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  border-radius: 0 0 12px 12px;
  margin-top: 2rem;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Services Flex Layout */
.services-flex {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-block {
  flex: 1 1 320px;
  min-width: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(221,157,103,0.07);
  padding: 1.2rem 1rem 1rem 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .services-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
  .service-block {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.2rem auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 1rem 0.5rem;
  }
  .header {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
  }
  .clinic-name {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
}
