
:root {
  --primary-green: #2fbf71;
  --dark-green: #1f8f52;
  --accent-lime: #7ed957;
  --dark-bg: #0f0f0f;
  --menu-bg: #1b1b1b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8f9fa;
  color: var(--dark-bg);
}


/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../images/faqs.jpeg') center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 60, 40, 0.95) 0%,
        rgba(0, 60, 40, 0.85) 40%,
        rgba(0, 60, 40, 0.6) 70%,
        rgba(0, 60, 40, 0.4) 100%
    );
    z-index: -1;
}

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

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}


/* HERO */
.faq-hero {
  padding: 100px 8%;
  background: #f2f2f2;
}

.faq-badge {
  display: inline-block;
  background: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ddd;
  margin-bottom: 25px;
}

.faq-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 900px;
}

.faq-hero span {
  color: var(--primary-green);
}

/* MAIN FAQ SECTION */
/* MAIN FAQ SECTION */
.faq-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1400px;   /* increased overall width */
  margin: 80px auto;
  padding-left: 4%;    /* little left spacing */
  padding-right: 6%;
  align-items: flex-start;
}

/* LEFT FAQ (make accordion wider) */
.faq-left {
  flex: 1.3;   /* increased from 1 */
}

/* RIGHT SIDE */
.faq-right {
  flex: 0.9;   /* slightly smaller than accordion */
}


/* LEFT FAQ */


.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-left: 5px solid var(--primary-green);
}

.faq-question {
  padding: 22px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 15px;
  color: #555;
}

.faq-item.active .faq-answer {
  padding: 20px 22px;
  max-height: 300px;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

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

/* RIGHT SIDE */
.faq-right {
  flex: 1;
}

.faq-right img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
}

.faq-right h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--dark-green);
}

.faq-right p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-right {
    order: -1;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 70px 6%;
  }

  .faq-hero h1 {
    font-size: 36px;
  }

  .faq-wrapper {
    padding: 0 6%;
  }
}
