/* === Base Styles === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #fff;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* === Header & Navigation === */
header {
  background-color: #a5c892;
  color: black;
  padding: 20px 0;
  text-align: center;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  font-size: 1.8em;
  margin: 10px 0;
}

nav {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  text-decoration: underline;
}

/* === Hero Section === */
.hero {
  background-color: #f3f8f1;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #a5c892;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #90b77d;
}

/* === Features Section === */
.features {
  background-color: #ffffff;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: #f3f8f1;
  padding: 20px;
  border-left: 4px solid #a5c892;
}

/* === Pricing Section === */
.pricing {
  background-color: #f3f8f1;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.price-box {
  background: #fff;
  border: 1px solid #c5d9b3;
  padding: 20px;
  min-width: 250px;
  flex: 1;
  border-radius: 5px;
}

.price {
  font-size: 1.5em;
  color: #688c4f;
  margin: 10px 0;
}

/* === Form Styles === */
form input,
form textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 5px;
}

form button {
  background-color: #a5c892;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #90b77d;
}

/* === Footer === */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin-left: 8px;
}

footer a:hover {
  text-decoration: underline;
}


/* === Responsive Adjustments === */
@media screen and (min-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    max-width: 220px;
  }

  nav {
    gap: 30px;
  }
}

.mission-values {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.mv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.mv-box {
  flex: 1 1 300px;
  background-color: #f3f8f1;
  border-left: 4px solid #a5c892;
  padding: 25px;
  text-align: left;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

.mv-box:hover {
  transform: translateY(-5px);
}

.mv-box h3 {
  margin-top: 0;
  color: #333;
}

.mv-box ul {
  padding-left: 20px;
}

.mv-box li {
  margin-bottom: 10px;
}

.consult-cta {
  background-color: #f3f8f1;
  padding: 80px 20px;
  text-align: center;
}

.consult-cta h2 {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #333;
}

.cta-button.large {
  padding: 14px 32px;
  font-size: 1rem;
  background-color: #a5c892;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0 20px 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button.large:hover {
  background-color: #90b77d;
  transform: scale(1.05);
}

.disclaimer {
  font-size: 0.9em;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.consult-cta .container {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #dce8d5;
  border-radius: 8px;
  max-width: 700px;
  margin: auto;
}

.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
  color: #333;
  font-size: 1.8em;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: #f3f8f1;
  border-left: 4px solid #a5c892;
  padding: 25px;
  max-width: 350px;
  text-align: left;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
  font-size: 0.95em;
  line-height: 1.6;
}

.testimonial h4 {
  font-weight: normal;
  color: #688c4f;
  margin-top: 10px;
  font-size: 0.9em;
}

.stars {
  color: #f5b841;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.trustpilot-badge {
  margin-top: 40px;
}

.trustpilot-badge img {
  height: 30px;
  opacity: 0.8;
}

.team-photo {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

.doctor-card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.team-showcase {
  background-color: #f3f8f1;
  padding: 60px 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.team-member {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.team-photo-portrait {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.mv-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 60px 20px;
}

.mv-block {
  flex: 1;
  min-width: 280px;
  background-color: #f3f8f1;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
}

.mv-block h3 {
  margin-top: 0;
  color: #333;
}

blockquote {
  font-style: italic;
  margin-top: 15px;
  color: #444;
  line-height: 1.5;
}

.cta-link {
  color: #688c4f;
  font-weight: bold;
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
  color: #90b77d;
}

