:root {
  --primary-color: #27AE60;
  --secondary-color: #5CB338;
  --accent-color: #337357;
  --light-color: #FEFAE0;
  --dark-color: #5F6F52;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #5CB338 100%);
  --hover-color: #229954;
  --background-color: #F2F2F2;
  --text-color: #2C3E50;
  --border-color: rgba(51, 115, 87, 0.2);
  --divider-color: rgba(39, 174, 96, 0.1);
  --shadow-color: rgba(39, 174, 96, 0.12);
  --highlight-color: #FFD23F;
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

/* Neomorphic styles */
.neu-card {
  background: var(--background-color);
  border-radius: 30px;
  box-shadow:
    15px 15px 30px rgba(39, 174, 96, 0.08),
    -15px -15px 30px rgba(255, 255, 255, 0.9);
}

.neu-inset {
  background: var(--background-color);
  border-radius: 18px;
  box-shadow:
    inset 8px 8px 16px rgba(39, 174, 96, 0.08),
    inset -8px -8px 16px rgba(255, 255, 255, 0.9);
}

.neu-button {
  background: var(--background-color);
  border: none;
  border-radius: 18px;
  padding: 16px 32px;
  box-shadow:
    8px 8px 16px rgba(39, 174, 96, 0.08),
    -8px -8px 16px rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  cursor: pointer;
  font-weight: 500;
}

.neu-button:hover {
  box-shadow:
    4px 4px 8px rgba(39, 174, 96, 0.08),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
  transform: translateY(3px);
}

.neu-button:active {
  box-shadow:
    inset 3px 3px 6px rgba(39, 174, 96, 0.08),
    inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(242, 242, 242, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.2rem 0;
  box-shadow: 0 6px 25px rgba(39, 174, 96, 0.08);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  height: 42px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.navigation a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navigation a:hover::before {
  width: 100%;
  left: 0;
}

.navigation a:hover {
  color: var(--primary-color);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.4s;
  border-radius: 2px;
}

/* Main content */
main {
  margin-top: 85px;
}

.hero {
  position: relative;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(95, 111, 82, 0.75);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 2.5rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.8rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 20px 45px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
  text-transform: capitalize;
}

.cta-button:hover {
  background: var(--highlight-color);
  color: var(--dark-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 210, 63, 0.4);
}

/* Sections */
section {
  padding: 5.5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--main-font);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--primary-color);
  line-height: 1.3;
}

/* Two column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.column img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(39, 174, 96, 0.15);
}

.column h2 {
  margin-bottom: 2.5rem;
}

.column p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: var(--text-color);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.8rem;
  margin-top: 3.5rem;
}

.feature-card {
  text-align: center;
  padding: 2.8rem;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 1.8rem;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  line-height: 1.4;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* CTA sections */
.cta-section {
  position: relative;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 7rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(39, 174, 96, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--main-font);
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.8rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  padding: 2.8rem;
  text-align: center;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Contact section */
.contact-section {
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

.contact-info h3 {
  font-family: var(--main-font);
  font-size: 1.7rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-form {
  padding: 2.8rem;
}

.contact-form h3 {
  font-family: var(--main-font);
  font-size: 1.7rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 18px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: var(--alt-font);
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow:
    inset 4px 4px 8px rgba(39, 174, 96, 0.08),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(39, 174, 96, 0.15);
}

/* FAQ */
.faq-item {
  margin-bottom: 2.8rem;
  padding: 2.8rem;
}

.faq-item h3 {
  font-family: var(--main-font);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.4;
}

.faq-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 3.5rem 0 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.08);
    padding: 2rem 0;
  }

  .navigation.active {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .header-content {
    flex-direction: column;
    position: relative;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-section h2 {
    font-size: 2.3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    padding: 2rem;
  }

  .feature-card,
  .testimonial-card,
  .faq-item {
    padding: 2rem;
  }
}