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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #1F2937;
  background: #F7FAFC;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.navbar {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #40A31F;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #1F2937;
  cursor: pointer;
  padding: 12px;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #1F2937;
  text-decoration: none;
  padding: 12px 18px;
  display: block;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #40A31F;
}

.header-main {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #AADA1B 0%, #40A31F 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 62px 28px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 45px;
  opacity: 0.95;
}

.primary-cta {
  display: inline-block;
  background: #F5D166;
  color: #1F2937;
  padding: 18px 45px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-cta:hover {
  background: #F5D166;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.content-section {
  padding: 62px 0;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1F2937;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  color: #1F2937;
  text-align: center;
  margin-bottom: 45px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.content-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.content-grid-inverted {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.content-grid-inverted-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.content-grid-inverted-row3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.info-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 35px;
  color: #40A31F;
  margin-bottom: 18px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1F2937;
}

.card-text {
  font-size: 17px;
  color: #1F2937;
  line-height: 1.6;
}

.content-panel {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}

.magazine-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-bottom: 45px;
}

.magazine-main {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.magazine-sidebar {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1F2937;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 18px;
  font-size: 17px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #40A31F;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: #40A31F;
  color: white;
  padding: 18px 28px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #AADA1B;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 28px;
  background: white;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1F2937;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #F7FAFC;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 18px 28px 28px 28px;
  font-size: 17px;
  line-height: 1.6;
  color: #1F2937;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
  color: #1F2937;
}

.testimonial-author {
  font-size: 17px;
  font-weight: 600;
  color: #40A31F;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.testimonial-btn {
  background: #40A31F;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: #AADA1B;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background: #40A31F;
}

.footer {
  background: #1F2937;
  color: white;
  padding: 62px 0 28px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 45px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #AADA1B;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #AADA1B;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.split-hero-image {
  background-size: cover;
  background-position: center;
  position: sticky;
  top: 0;
  height: 100vh;
}

.split-hero-content {
  display: flex;
  align-items: center;
  padding: 62px 45px;
  background: white;
}

.cta-section {
  background: linear-gradient(135deg, #40A31F 0%, #AADA1B 100%);
  color: white;
  padding: 62px 28px;
  text-align: center;
  border-radius: 12px;
  margin: 45px 0;
}

.cta-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.action-button-secondary {
  display: inline-block;
  background: white;
  color: #40A31F;
  padding: 18px 45px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.action-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 62px;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.highlight-box {
  background: #F5D166;
  padding: 28px;
  border-radius: 12px;
  margin: 28px 0;
  border-left: 4px solid #40A31F;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 45px 0;
}

.stat-item {
  text-align: center;
  padding: 28px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #40A31F;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 17px;
  color: #1F2937;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 35px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section-title {
    font-size: 29px;
  }

  .content-grid,
  .content-grid-inverted {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid-inverted-row2 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-hero {
    grid-template-columns: 1fr;
  }

  .split-hero-image {
    position: relative;
    height: 50vh;
  }

  .image-text-section {
    grid-template-columns: 1fr;
  }

  .magazine-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 18px 0;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-link {
    padding: 18px 28px;
    display: block;
  }

  .header-main {
    min-height: 70vh;
    padding: 45px 0;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-content {
    padding: 45px 18px;
  }

  .content-section {
    padding: 45px 0;
  }

  .content-grid,
  .content-grid-2col,
  .content-grid-inverted,
  .content-grid-inverted-row2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .content-panel,
  .magazine-main {
    padding: 28px;
  }

  .form-container {
    padding: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .primary-cta,
  .action-button-secondary,
  .submit-btn {
    width: 100%;
    padding: 18px 28px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 17px;
  }

  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .card-title {
    font-size: 20px;
  }

  .info-card {
    padding: 18px;
  }

  .form-container {
    padding: 18px;
  }

  .testimonial-slide {
    padding: 28px;
  }

  .stat-number {
    font-size: 35px;
  }
}
