:root {
  --primary-color: #27AE60;
  --secondary-color: #1E8449;
  --accent-color: #58D68D;
  --light-color: #E8F8F5;
  --dark-color: #145A32;
  --gradient-primary: linear-gradient(135deg, #58D68D 0%, #27AE60 100%);
  --hover-color: #229954;
  --background-color: #F0FDF4;
  --text-color: #2D5016;
  --border-color: rgba(88, 214, 141, 0.2);
  --divider-color: rgba(30, 132, 73, 0.1);
  --shadow-color: rgba(30, 132, 73, 0.12);
  --highlight-color: #F1C40F;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Neomorphism styles */
.neomorphism {
  box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px rgba(255, 255, 255, 0.8);
  border-radius: 25px;
}

.neomorphism-inset {
  box-shadow: inset 10px 10px 20px var(--shadow-color), inset -10px -10px 20px rgba(255, 255, 255, 0.8);
  border-radius: 25px;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(240, 253, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 45px;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.navigation a:hover {
  color: var(--primary-color);
}

.navigation a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.navigation a:hover::after {
  width: 100%;
  left: 0;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--text-color);
  border-radius: 3px;
  transition: 0.3s;
}

#menu-checkbox {
  display: none;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('./img/bg.jpg') center/cover fixed;
  position: relative;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 90, 50, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 900px;
  padding: 3rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(39, 174, 96, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(39, 174, 96, 0.4);
}

/* Section styles */
.section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--main-font);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--dark-color);
  font-weight: 700;
}

/* Two column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-content img {
  width: 100%;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.02);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  padding: 2.5rem;
  text-align: center;
  background: var(--light-color);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

/* CTA sections */
.cta-section {
  background: url('./img/bg.jpg') center/cover fixed;
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 90, 50, 0.75);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: white;
}

.cta-content h2 {
  font-family: var(--main-font);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--light-color);
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  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: 4rem;
}

.contact-info h3 {
  font-family: var(--main-font);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  padding: 2.5rem;
  background: white;
  border-radius: 25px;
}

.contact-form h3 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--border-color);
  border-radius: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* FAQ */
.faq-item {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
}

.faq-question {
  font-family: var(--main-font);
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.faq-item p {
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 4rem 2rem 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 15px var(--shadow-color);
  }

  #menu-checkbox:checked~.navigation {
    max-height: 350px;
  }

  .navigation ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  .logo {
    justify-content: center;
    flex: 1;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}