@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #5CB338;
  --secondary-color: #337357;
  --accent-color: #A9B388;
  --light-color: #FEFAE0;
  --dark-color: #5F6F52;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #337357 100%);
  --hover-color: #4A9D2F;
  --background-color: #FEFAE0;
  --text-color: #4B5563;
  --border-color: rgba(169, 179, 136, 0.3);
  --divider-color: rgba(51, 115, 87, 0.15);
  --shadow-color: rgba(95, 111, 82, 0.12);
  --highlight-color: #ECE852;
  --main-font: 'Oswald', 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);
  line-height: 1.7;
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background: var(--dark-color);
  box-shadow: 0 4px 15px var(--shadow-color);
  z-index: 1000;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
}

header nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

header nav a {
  color: var(--light-color);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight-color);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: var(--highlight-color);
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--light-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  header .logo {
    margin: 0 auto;
  }

  header .container {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  header nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-checkbox:checked ~ nav {
    max-height: 400px;
  }

  header nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  #menu-checkbox:checked + .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  #menu-checkbox:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  #menu-checkbox:checked + .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content {
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}

.hero .cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-color);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 
              inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero .cta-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

/* SECTION STYLES */
section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* CONTENT SECTION */
.content-section {
  background: var(--background-color);
}

.content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.content-image {
  flex: 0 0 40%;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .content-grid {
    flex-direction: column;
  }
  
  .content-image {
    flex: 0 0 100%;
  }
}

/* SECTION DIVIDER */
.section-divider {
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--divider-color);
}

.divider-text {
  display: inline-block;
  background: var(--background-color);
  padding: 0 30px;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

/* CTA SECTION */
.cta-section {
  position: relative;
  text-align: center;
  color: white;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 10dvh 20px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  line-height: 1.8;
}

.cta-section .cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--primary-color);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p {
    font-size: 1.1rem;
  }
}

/* FEATURES TIMELINE */
.features-section {
  background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  margin-left: 50%;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  width: 90%;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color);
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px var(--shadow-color);
  z-index: 10;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.timeline-content p {
  line-height: 1.7;
  color: var(--text-color);
}

@media (max-width: 968px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    padding-left: 80px;
  }

  .timeline-icon {
    left: 30px;
  }

  .timeline-content {
    width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--background-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color);
  border-color: var(--primary-color);
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px var(--shadow-color);
}

.info-text p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--alt-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(92, 179, 56, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--shadow-color);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/* FAQ SECTION */
.faq-section {
  background: var(--background-color);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  box-shadow: 0 6px 20px var(--shadow-color),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.faq-question {
  padding: 25px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(92, 179, 56, 0.05) 0%, rgba(51, 115, 87, 0.05) 100%);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 30px 25px 30px;
  color: var(--text-color);
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 50px 20px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
}

footer .logo img {
  height: 60px;
  width: auto;
}

footer nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  font-size: 15px;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--highlight-color);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 15px;
  }
}