* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Barlow, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #49a842;
}

.logo-links-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  font-size: 1.15rem;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #49a842;
}

.launch-btn {
  font-size: 1.15rem;
  background: #49a842;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.launch-btn:hover {
  cursor: pointer;
}

/* Hero Section */
.hero-image {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  max-height: 400px;
}

.photo-credit {
  font-size: .75rem;
  color: #6b7280; /* subtle gray */
  margin-top: 8px;
}

.hero {
  background: white;
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #49a842;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.5rem;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  
  display: flex;
  gap: 20px;

  * > a {
    text-decoration: none;
    color: white;
  }
}

.btn-primary {
  background: #49a842;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-secondary {
  background: transparent;
  color: #49a842;
  padding: 15px 30px;
  border: 2px solid #49a842;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #49a842;
  color: white;
}

/* Features Section */
.features {
  padding: 80px 0;
}

.features h2 {
  font-size: 38px;
  font-weight: 700;
  color: #49a842;
  margin-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}

.features .subtitle {
  font-size: 1.5rem;
  color: #4a5568;
  margin-bottom: 50px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #49a842;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  background: white;
  padding: 80px 0;
}

.how-it-works h2 {
  font-size: 38px;
  font-weight: 700;
  color: #49a842;
  margin-bottom: 10px;
}

.how-it-works .subtitle {
  font-size: 22px;
  color: #4a5568;
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #49a842;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #49a842;
  margin-bottom: 10px;
}

.step p {
  color: #4a5568;
  font-size: 1.25rem!important;
  line-height: 1.5;
}

.explore-btn {
  background: #49a842;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 0 auto;

  > a {
    color: white;
    text-decoration: none;
  }
}

/* Professionals Section */
.professionals {
  padding: 80px 0;
}

.professionals h2 {
  font-size: 36px;
  font-weight: 700;
  color: #49a842;
  margin-bottom: 10px;
}

.professionals .subtitle {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 50px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-size: 1.25rem!important;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial .author {
  color: #49a842;
  font-weight: 600;
  font-size: 14px;
}

/* CTA Section */
.cta {
  background: white;
  padding: 80px 0;
}

.cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #49a842;
  margin-bottom: 10px;
}

.cta .subtitle {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 20px;
}

.cta .cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* ensures responsiveness */
  gap: 20px;
}

.cta .description {
  color: #4a5568;
  margin-bottom: 0;
  font-size: 16px;
  flex: 1; /* allows the paragraph to take remaining space */
}

.schedule-btn {
  background: transparent;
  color: #49a842;
  padding: 15px 30px;
  border: 2px solid #49a842;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.schedule-btn:hover {
  background: #49a842;
  color: white;
}

/* Footer Section */
.footer {
  background: #edf2f7;
  padding: 40px 0;
  text-align: center;
  font-size: 16px;
  color: #4a5568;
}

.footer-links {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #49a842;
}

.footer-contact p {
  font-size: 1.25rem!important;
  margin: 5px 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .features-grid {
    gap: 30px;
  }

  .steps-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}
