:root {
  --brand: #7fb13a;
  --brand-800: #5b8e23;
  --text: #222;
  --muted: #6c757d;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  color: var(--text);
  background: #fff;
}

.navbar {
  transition: box-shadow .2s ease, background-color .2s ease;
  z-index: 9999;
}

.navbar.navbar-transparent {
  background-color: transparent !important;
  background: transparent !important;
  box-shadow: none;
}

header {
  z-index: 9999;
  position: relative;
}

.brand-logo { height: 36px; transform: scale(.6); transform-origin: left center; }

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800 !important;
  color: #5b8e23 !important;
}

.navbar .nav-link {
  color: #3a3a3a;
  padding: .75rem 1rem;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--brand);
}

.navbar .nav-link.active {
  color: var(--brand);
  font-weight: 600;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .35rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar.navbar-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* Mobile Navigation - Always solid background */
@media (max-width: 991.98px) {
  .navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
  }

  .navbar.navbar-transparent {
    background-color: #ffffff !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
  }

  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
  }
}

.hero-section {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-image: url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section .lead { color: #2a2a2a; }

.hero-img {
  max-height: 70vh;
  object-fit: cover;
}

.hero-img-scaled {
  transform: scale(1.5);
  transform-origin: center;
}

.hero-badge { width: 140px; height: auto; }
.title-line { display: block; line-height: 1.1; }
.title-accent { color: var(--brand-800); }

.highlight-text {
  color: #0f1b12;
  font-weight: 600;
}

.accent-underline {
  position: relative;
}

.accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: linear-gradient(90deg, rgba(127,177,58,.25), rgba(127,177,58,.05));
  border-radius: 8px;
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-800);
  --bs-btn-hover-border-color: var(--brand-800);
  --bs-btn-focus-shadow-rgb: 127, 177, 58;
}

.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
}

.section-padding { padding: 6rem 0; }

.section-title {
  position: relative;
  font-weight: 700;
  font-size: 2.5rem;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

.subsection-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: inherit;
  line-height: 1.3;
}

.subsubsection-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: .75rem;
  color: inherit;
}

.section-dark .subsection-title,
.section-dark .subsubsection-title {
  color: rgba(255,255,255,.95);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(127,177,58,.3) 20%, rgba(127,177,58,.6) 50%, rgba(127,177,58,.3) 80%, transparent 100%);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}

.social-floating {
  position: fixed;
  right: 24px;
  bottom: 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  z-index: 1030;
  box-shadow: 0 10px 30px rgba(127,177,58,.4);
}

.social-floating a { color: #fff; font-size: 1.15rem; }

.bg-light { background-color: #f6f8f6 !important; }

footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.1);
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity .2s ease;
}

.footer-logo:hover {
  opacity: 1;
}

footer a {
  color: inherit;
  transition: color .2s ease;
  font-weight: 500;
}

footer a:hover {
  color: var(--brand);
}

footer .text-muted {
  color: #6c757d !important;
}

/* Mobile Footer Adjustments */
@media (max-width: 767.98px) {
  footer {
    padding: 2rem 0 1.5rem !important;
  }

  footer .row {
    gap: 0.5rem;
  }

  footer .footer-logo {
    height: 35px;
  }

  footer span,
  footer a {
    font-size: 0.95rem;
  }
}

.advisor-contact-box {
  background: linear-gradient(135deg, rgba(127,177,58,.15) 0%, rgba(127,177,58,.05) 100%);
  border: 2px solid rgba(127,177,58,.3);
  border-radius: 24px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.advisor-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-800) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(127,177,58,.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.advisor-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
}

.advisor-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
}

.advisor-contact-item {
  display: block;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(127,177,58,.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.advisor-contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(127,177,58,.1), transparent);
  transition: left .5s ease;
}

.advisor-contact-item:hover::before {
  left: 100%;
}

.advisor-contact-item:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(127,177,58,.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.advisor-contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-800) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: transform .3s ease;
}

.advisor-contact-item:hover .advisor-contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.advisor-contact-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.advisor-contact-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

.advisor-cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}

.contact-intro-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}

.contact-cta-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-style: italic;
}

.text-highlight {
  color: var(--brand);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--brand);
  opacity: 0.5;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section { padding-top: 6rem; }
  .hero-img { max-height: 45vh; }
}

@media (max-width: 767.98px) {
  /* Typography */
  .section-title {
    font-size: 2rem;
  }

  .subsection-title {
    font-size: 1.5rem;
  }

  .subsubsection-title {
    font-size: 1.15rem;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero-section .display-5 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .hero-badge {
    width: 100px;
  }

  /* Buttons */
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  /* Stack buttons vertically on mobile */
  .d-flex.gap-2:has(.btn) {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .d-flex.gap-2:has(.btn) .btn {
    width: 100%;
  }

  /* Contact Section */
  .contact-intro-text {
    font-size: 1.1rem;
  }

  .contact-cta-text {
    font-size: 1rem;
  }

  .advisor-contact-box {
    padding: 2rem 1.25rem;
  }

  .advisor-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .advisor-title {
    font-size: 1.5rem;
  }

  .advisor-subtitle {
    font-size: 1rem;
  }

  .advisor-contact-item {
    padding: 1.5rem 1rem;
  }

  .advisor-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .advisor-contact-value {
    font-size: 1rem;
  }

  .advisor-cta-text {
    font-size: 1.1rem;
  }

  /* Section Padding */
  .section-padding {
    padding: 4rem 0;
  }

  /* Social Floating */
  .social-floating {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    gap: 8px;
  }

  .social-floating a {
    font-size: 1rem;
  }

  /* Images & Charts */
  .chart-img {
    margin-bottom: 1rem;
  }

  /* Lists */
  ul {
    padding-left: 1.25rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

  /* Better text readability */
  p {
    font-size: 0.95rem;
  }

  /* Ensure text doesn't overflow */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Charts - bigger and readable */
.chart-img {
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.chart-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 32px #7fb13a!important;
}

.charts-grid .chart-img {
  width: 100%;
  height: auto;
  filter: saturate(1.02) contrast(1.02);
  transition: transform .25s ease;
}

.charts-grid .chart-img:hover { transform: translateY(-4px); }

/* Features Grid - Competitive Advantage Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(127,177,58,.12) 0%, rgba(127,177,58,.05) 100%);
  border: 2px solid rgba(127,177,58,.25);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(127,177,58,.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(127,177,58,.5);
  box-shadow: 0 20px 40px rgba(127,177,58,.25), 0 10px 20px rgba(0,0,0,.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-800) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(127,177,58,.35);
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 12px 30px rgba(127,177,58,.5);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.feature-description {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Stats Grid - Animated Counter Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(127,177,58,.08) 0%, rgba(127,177,58,.03) 100%);
  border: 2px solid rgba(127,177,58,.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(127,177,58,.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(127,177,58,.5);
  box-shadow: 0 25px 50px rgba(127,177,58,.3), 0 15px 30px rgba(0,0,0,.15);
}

.stat-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-800) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(127,177,58,.4);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(127,177,58,.6);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-800);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.stat-plus,
.stat-percent {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  margin-left: 0.25rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-plus,
  .stat-percent {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .section-padding { padding: 7rem 0; }
  .hero-section h1 { font-size: 3.25rem; }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Light/Dark alternating sections */
.section-light { background-color: #ffffff; }

.section-dark {
  background: linear-gradient(180deg, #0f1b12 0%, #155019 100%);
  color: #f2f5f0;
}

.section-dark .section-title::after { background: #9fca61; }
.section-dark p,
.section-dark li,
.section-dark h5,
.section-dark h6 { color: rgba(255,255,255,.92); }

.section-dark a { color: #dff4b3; }
.section-dark .contact-info p { color: rgba(255,255,255,.92); }
.section-dark .contact-info a { color: #dff4b3; transition: color .2s ease; }
.section-dark .contact-info a:hover { color: #ffffff; }

.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(127,177,58,.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:has(.ratio) {
  padding: 0;
}

.contact-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(127,177,58,.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(127,177,58,.2), rgba(127,177,58,.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--brand);
}

.contact-card h4,
.contact-card h5 {
  color: rgba(255,255,255,.95);
  font-weight: 600;
}

.contact-card p {
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.contact-link {
  color: #dff4b3 !important;
  text-decoration: none;
  font-weight: 500;
  transition: all .2s ease;
}

.contact-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.section-dark .btn-outline-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: rgba(255,255,255,.7);
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-hover-color: #0f1b12;
}

/* Language switcher (flags) */
.lang-switcher .nav-link {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity .2s ease, transform .2s ease;
}

.lang-switcher .nav-link img {
  display: block;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(15, 27, 18, 0.18);
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.lang-switcher .nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switcher .nav-link:hover img,
.lang-switcher .lang-active img {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  border-color: rgba(127, 177, 58, 0.7);
}

.lang-switcher .lang-active {
  opacity: 1;
  font-weight: 700;
}

/* Benefits Section - Cards Style */
.benefits-image {
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(127, 177, 58, 0.2);
  border: 2px solid rgba(127, 177, 58, 0.15);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  max-height: 470px;
  object-fit: cover;
}

.benefits-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(127, 177, 58, 0.3);
  border-color: rgba(127, 177, 58, 0.35);
}

.benefits-right-column {
  margin-top: 25px;
}

@media (min-width: 992px) {
  .benefits-right-column {
    margin-top: -30px;
  }
}

.benefits-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: inherit;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(127,177,58,.06) 0%, rgba(127,177,58,.02) 100%);
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.benefit-item:hover {
  background: linear-gradient(135deg, rgba(127,177,58,.1) 0%, rgba(127,177,58,.04) 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(127,177,58,.15);
  border-left-width: 6px;
}

.benefit-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  filter: grayscale(0.2);
  transition: transform .3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
}

.benefit-content {
  flex: 1;
  line-height: 1.6;
  color: #2a2a2a;
  font-size: 1.02rem;
}

.benefit-content strong {
  color: var(--brand-800);
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 0.25rem;
}

@media (max-width: 767.98px) {
  .benefits-title {
    font-size: 1.3rem;
  }

  .benefit-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .benefit-icon {
    font-size: 1.5rem;
  }

  .benefit-content {
    font-size: 0.95rem;
  }

  .benefit-content strong {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(127,177,58,.25);
  border-radius: 16px !important;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(127,177,58,.5);
  box-shadow: 0 6px 20px rgba(127,177,58,.25);
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
}

.faq-item .accordion-button {
  background: linear-gradient(135deg, rgba(127,177,58,.15) 0%, rgba(127,177,58,.08) 100%);
  color: rgba(255,255,255,.95);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.5rem 1.75rem;
  border: none;
  box-shadow: none;
  transition: all .3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(127,177,58,.25) 0%, rgba(127,177,58,.15) 100%);
  color: rgba(255,255,255,.98);
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239fca61'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
  transition: transform .3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-item .accordion-button i {
  color: #9fca61;
  font-size: 1.3rem;
  transition: transform .3s ease;
}

.faq-item .accordion-button:not(.collapsed) i {
  transform: scale(1.1);
  color: #b8e089;
}

.faq-item .accordion-body {
  padding: 1.25rem 1.75rem 1.75rem 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.03);
}

/* Add space for icon */
.faq-item .accordion-button span {
  flex: 1;
}

@media (max-width: 767.98px) {
  .faq-item .accordion-button {
    font-size: 1rem;
    padding: 1.25rem 1.25rem;
  }

  .faq-item .accordion-button i {
    font-size: 1.1rem;
  }

  .faq-item .accordion-body {
    padding: 1rem 1.25rem 1.5rem 1.25rem;
    font-size: 0.95rem;
  }
}


