/* 2eva Static Site - Generated from crawler data */
:root {
  --color-green: #6AAD1F;
  --color-green-dark: #5a9518;
  --color-teal: #2AB2AA;
  --color-teal-dark: #239690;
  --color-orange: #F49B16;
  --color-dark: #333333;
  --color-grey: #595959;
  --color-light-grey: #f5f5f5;
  --color-white: #ffffff;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  --max-width: 1140px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 0;
}
.header-logo img { height: 70px; width: auto; margin-bottom: 12px; }
.header-nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; padding-bottom: 12px; }
.header-nav a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--color-dark);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.header-nav a:hover {
  background: var(--color-light-grey);
  color: var(--color-green);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 60px 24px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(106,173,31,0.82) 0%, rgba(42,178,170,0.78) 100%);
  border-radius: 16px;
  padding: 48px 40px 40px;
  backdrop-filter: blur(2px);
}
.hero-logo { max-width: 260px; margin: 0 auto 20px; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.hero p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
  line-height: 1.6;
}

/* ---- Carousel ---- */
.hero-carousel { overflow: hidden; }
.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.45); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn-outline {
  background: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
}

/* ---- Sections ---- */
.section {
  padding: 60px 24px;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-alt { background: var(--color-light-grey); }
.section-bg {
  background-size: cover;
  background-position: center;
}

/* ---- Grid ---- */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Cards ---- */
.card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 24px;
  text-align: center;
}
.card-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 12px;
}
.card-body p {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 16px;
  line-height: 1.5;
}
.card-body .btn { font-size: 12px; padding: 10px 24px; }

/* ---- Text content ---- */
.content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 16px;
  text-align: center;
}
.content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 12px;
}
.content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--color-dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.content ul {
  max-width: 900px;
  margin: 0 auto 20px;
  padding-left: 24px;
}
.content ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ---- FAQ ---- */
.faq-banner {
  background: var(--color-green);
  color: #fff;
  text-align: center;
  padding: 28px 24px;
}
.faq-banner h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.faq-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
}
.faq-search {
  border: none;
  border-bottom: 2px solid var(--color-green);
  padding: 8px 12px;
  font-size: 14px;
  color: var(--color-green);
  width: 240px;
  outline: none;
  font-family: var(--font-body);
}
.faq-search::placeholder { color: var(--color-green); opacity: 0.7; }
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 24px;
  overflow-x: auto;
}
.faq-tab {
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-grey);
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.faq-tab.active, .faq-tab:hover {
  color: var(--color-green);
  border-bottom-color: var(--color-green);
}
.faq-tab-content { display: none; }
.faq-tab-content.active { display: block; }
.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
}
.faq-question::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  transform: rotate(-135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--color-grey);
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-share {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}
.faq-share a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-grey);
  transition: background 0.2s;
}
.faq-share a:hover { background: #e0e0e0; }

/* ---- Badges ---- */
.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.badges img {
  max-height: 100px;
  width: auto;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.site-footer a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--color-white); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .header-nav { justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 360px; padding: 48px 20px; }
  .hero h1 { font-size: 22px; }
  .content h2 { font-size: 26px; }
  .badges { gap: 20px; }
  .badges img { max-height: 70px; }
}
