/* =========================
   FMCG Brand Marketing Page
   Design CSS
========================= */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  /* Reserve the underline space on every link so activating one
     never changes its box height (and thus the header height). */
  border-bottom: 2px solid transparent;
}

.fmcg-page {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  background: #fffaf3;
}
/* HERO SECTION */
.fmcg-hero {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  padding: 80px 30px;
  border-radius: 20px;
  text-align: center;
  color: #1d1d1d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  margin-top: 100px;
  margin-bottom:50px;
}

.fmcg-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.fmcg-hero p {
  font-size: 18px;
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
}

/* SECTION STYLE */
.fmcg-section {
  margin-bottom: 30px;   /* reduced space */
  padding: 10px 0;
}
.fmcg-section p {
  margin-top: 5px;    /* space above paragraph */
  margin-bottom: 10px; /* space below paragraph */
  line-height: 1.5;    /* controls spacing inside paragraph */
}
.fmcg-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
  color: #333;
  position: relative;
}

.fmcg-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #fb8500;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* CARDS */
.fmcg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.fmcg-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.fmcg-card:hover {
  transform: translateY(-10px);
  background: #fb8500;
  color: #ffffff;
}

/* HIGHLIGHT SECTION */
.fmcg-section.highlight {
  background: #fff3e0;
  padding: 45px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* BENEFITS & LISTS */
.benefits-list {
  max-width: 700px;
  margin: auto;
  list-style: none;
  padding: 0;
}

.benefits-list li {
  background: #ffffff;
  margin-bottom: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-weight: 500;
  transition: 0.2s;
}

.benefits-list li:hover {
  background: #ffe0b2;
}

/* FAQ STYLE */
/* FAQ Dropdown Style */
.faq-section {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Question */
.faq-item summary {
  font-weight: 600;
  font-size: 17px;
  color: #6b7280;
  cursor: pointer;
  list-style: none;
}

/* remove default arrow */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▼";
  float: right;
  font-size: 16px;
  color: #6b7280;
}

.faq-item[open] summary::after {
  content: "▲";
}

/* Answer */
.faq-item p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #9ca3af;
}

/* CTA LOOK */
.fmcg-section.highlight h2 {
  color: #d35400;
}

.fmcg-section.highlight p {
  font-size: 18px;
  line-height: 1.7;
}
nav a.active {
  color: orange;
  /* border-bottom-color: orange; */
}