:root {
  --brand-cream: #F9F6F2;
  --brand-green: #A3B18A;
  --brand-dark-green: #588157;
  --brand-text: #344E41;
  --brand-light-text: #6c757d;
  --white: #FFFFFF;
  --gray-300: #D1D5DB;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--brand-cream);
  color: var(--brand-text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header */
.header {
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--brand-dark-green);
}

.cta-button-header {
  background-color: var(--brand-dark-green);
  color: var(--white);
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button-header:hover {
  background-color: var(--brand-green);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text > p {
  font-size: 1.125rem;
  color: var(--brand-light-text);
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits-list svg {
  color: var(--brand-green);
}

.cta-button-main {
  display: inline-block;
  background-color: var(--brand-dark-green);
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button-main:hover {
  background-color: var(--brand-green);
}

.form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.form-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-container p {
  color: var(--brand-light-text);
  margin-bottom: 1.5rem;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-container label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-container input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
}

.form-container input:focus {
  outline: 2px solid var(--brand-green);
  border-color: var(--brand-green);
}

.form-container button {
  width: 100%;
  background-color: var(--brand-dark-green);
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-container button:hover {
  background-color: var(--brand-green);
}

/* General Section Styling */
.benefits-section, .how-it-works, .testimonials {
  padding: 5rem 0;
}

.benefits-section, .testimonials {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--brand-light-text);
  margin-top: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  gap: 2rem;
}

.benefit-card {
  background-color: var(--brand-cream);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.benefit-card svg {
  margin: 0 auto 1rem;
  color: var(--brand-dark-green);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--brand-light-text);
}

/* How It Works Section */
.steps-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.step-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.step-card svg {
  margin: 0 auto 1.5rem;
  color: var(--brand-dark-green);
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--brand-light-text);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--brand-cream);
  padding: 2rem;
  border-radius: 0.75rem;
}

.testimonial-card .quote {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author .name {
  font-weight: 600;
  color: var(--brand-dark-green);
}

.author .title {
  font-size: 0.875rem;
  color: var(--brand-light-text);
}

/* Footer */
.footer {
  background-color: var(--brand-text);
  color: var(--brand-cream);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--brand-green);
}

.footer-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--brand-cream);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--brand-light-text);
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero {
    padding: 8rem 0;
  }
  .hero-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}