/* ===== RESPONSIVE NAVIGATION ===== */
@media (max-width: 768px) {
  nav ul {
    display: none; /* hide menu on small screens */
  }
  .menu-toggle {
    display: block; /* show hamburger menu */
  }
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  height: 6cm;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ccc;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Call-to-action button inside hero */
.hero-button {
  position: absolute;
  bottom: 18%;       /* vertical positioning */
  left: 67%;         /* horizontal positioning */
  transform: translateX(-50%);
  width: 210px;
  height: 35px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/* ===== SEARCH FIELD AND AUTOSUGGEST ===== */

/* Focus state of search input */
#search-input:focus {
  border-color: #666;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

/* Dropdown suggestion list */
.suggestions-list {
  position: absolute;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
}

html {
  scroll-behavior: smooth;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  max-width: 960px;
  margin: 70px auto 110px;
  padding: 0 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2c2d31;
}

.faq-cta {
  text-align: center;
  margin-bottom: 28px;
}

.faq-cta-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #b21324;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.faq-cta-btn:hover {
  background: #92101d;
}

.faq-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 16px;
  color: #b21324;
  margin: 0 0 24px;
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid #d9d9de;
  padding-bottom: 12px;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  border-left: 1px solid #7a7b80;
  border-bottom: 1px solid #7a7b80;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 4px;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
}

.faq-question {
  font-weight: 700;
  font-size: 17px;
  color: #1f2023;
}

.faq-answer {
  display: none;
  padding: 0 30px 10px 34px;
  line-height: 1.6;
  color: #3d3f44;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 640px) {
  .faq-section {
    margin: 50px auto 80px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    padding-left: 28px;
  }
}
