@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #1E8449;
  --accent-color: #5CB338;
  --light-color: #FEFAE0;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #27AE60 100%);
  --hover-color: #229954;
  --background-color: #FFFFFF;
  --text-color: #2C3D4F;
  --border-color: rgba(92, 179, 56, 0.2);
  --divider-color: rgba(30, 132, 73, 0.1);
  --shadow-color: rgba(39, 174, 96, 0.15);
  --highlight-color: #F59D2A;
  --main-font: 'Montserrat', sans-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;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--dark-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

header nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 1.5rem;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  header .navigation {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--dark-color);
    transition: left 0.3s ease;
    padding: 2rem 0;
  }

  #menu-toggle:checked ~ .navigation {
    left: 0;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  header .logo {
    margin: 0 auto;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-attachment: fixed;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
  box-shadow: 0 8px 20px var(--shadow-color),
              inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px var(--shadow-color),
              inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.content-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3rem;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 60% 40%;
}

.content-grid img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 2px 8px rgba(255, 255, 255, 0.5);
}

.content-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-text p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

/* Section Divider */
.section-divider {
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--divider-color);
  z-index: 1;
}

.section-divider span {
  position: relative;
  z-index: 2;
  background: var(--background-color);
  padding: 0 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--main-font);
}

/* CTA Section */
.cta-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: var(--light-color);
}

.features-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  width: 45%;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.feature-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.feature-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 5px 15px var(--shadow-color);
  z-index: 2;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-timeline::before {
    left: 30px;
  }

  .feature-item,
  .feature-item:nth-child(even) {
    flex-direction: row;
  }

  .feature-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

  .feature-icon {
    left: 30px;
    transform: translateX(0);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, rgba(92, 179, 56, 0.05) 0%, rgba(39, 174, 96, 0.05) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  font-family: var(--main-font);
}

/* Contact Section */
.contact-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--light-color);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1),
              inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: var(--light-color);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px var(--shadow-color),
              inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--main-font);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3rem 0 1rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

footer .logo img {
  height: 50px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: var(--primary-color);
}

footer p {
  text-align: center;
  width: 100%;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

footer p a {
  color: var(--primary-color);
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}