:root {
  --blue: #1F5E7A;
  --green: #3A8F6B;
  --light: #F7F7F5;
  --dark: #2A2A2A;
  --section-white: #FFFFFF;
  --section-soft: #EEF4F1;
  --section-soft-blue: #EEF3F6;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
}

h3 {
  font-family: 'Inter', sans-serif;
  color: var(--green);
  font-weight: 600;
}

h1 {
  font-size: 2.4em;
  margin: 0.3em 0;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  padding: 80px 20px;
}

.hero h1 {
  color: white;

}

.logo {
  width: 160px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;

}

.about {
  background-color: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  text-align: left;
}

.about-image {
  text-align: center;
}

.profile-photo {
  width: 230px;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    text-align: left;
  }
}

.button {
  display: inline-block;
  background: white;
  color: var(--blue);
  padding: 12px 26px;
  margin: 5px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.button.secondary {
  background: var(--green);
  color: white;
}

.button:hover {
  opacity: 0.92;
}

section {
  padding: 60px 20px;
}

.container {
  max-width: 750px;
  margin: 0 auto;
}

.services h3 {
  color: var(--green);
}

.approach {
  background-color: var(--section-soft-blue);
  border-left: 4px solid var(--green);
}

.testimonials {
  background-color: white;
}

.testimonial {
  margin-bottom: 30px;
  padding: 24px;
  border-left: 4px solid var(--blue);
  background: #fcfcfa;
  border-radius: 6px;
}

.testimonial p:last-child {
  margin-bottom: 0;
}

.contact {
  text-align: center;
}

.contact a {
  color: var(--green);
  font-weight: 600;
}

footer {
  background: #243746;
  color: var(--light);
  text-align: center;
  padding: 25px;
  font-size: 0.9em;
}

.about {
  background-color: var(--light);
}

.services {
  background-color: var(--section-white);
}

.testimonials {
  background-color: var(--section-soft);
}

.contact {
  background-color: var(--section-white);
}

.pricing {
  background-color: var(--section-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.pricing-card {
  background: #fcfcfa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--green);
}

.pricing-card h3 {
  margin-top: 0;
}

.price {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--blue);
}

.pricing-note {
  margin-top: 20px;
  text-align: center;
}

/* Mobile fix */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}