@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  padding: 0;
  margin: 0;
}

.faqPage {
  margin-top: 50px;
}
.faq_banner_container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 55vh;
}

.faq-banner-container {
  padding: 45px 30px;
}

.faq-banner-content-wrapper {
 margin-left: 25px;
}

.faq-banner-title {
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
}

.faq-search-input-group {
  display: flex;
  width: 100%;
  height: 100%;
}

.faq-search-bar {
  width: 600px;
  margin: 0 auto;
  height: 48px;
}

.faq-search-bar input {
  border-radius: 0.25rem 0 0 0.25rem;
  border: none;
  flex-grow: 1;
  padding: 0.5rem 1rem;
  outline: none;
  height: 100%;
  box-sizing: border-box;
  font-size: 14px;
}

.faq-search-bar input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.input-group-append {
  background-color: #1f3f6d;
  border: none;
  width: 45px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-search-bar button {
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.services-container {
  margin: 3rem auto;
  padding: 0 15px;
  max-width: 1200px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card-wrapper {
  width: 100%;
}
.service-card-wrapper a {
  text-decoration: none;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #333333;
  text-decoration: none;
}

.meal-faq-section {
  padding: 0.5rem 0;
}

.meal-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.meal-faq-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: left;
}

.meal-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.meal-faq-item {
  margin-bottom: 1.5rem;
}

.meal-faq-question {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.meal-faq-answer {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.help-footer {
  padding: 3rem 0;
}

.help-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.help-footer-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.help-footer-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.help-footer-button {
  padding: 0.75rem 1.5rem;
  background-color: #1f3f6d;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-banner-title {
    font-size: 16px;
  }
  .faq_banner_container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
  }
  .faq-search-bar {
    width: 100%;
  }
  .faq-banner-content-wrapper {
    padding: 0 10px;
margin-left: 10px !important;
  }
}

@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-container {
    padding: 0 10px;
  }
}
@media screen and (max-width: 992px) {
  .meal-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .meal-faq-section {
    padding: 1.25rem 0;
  }

  .meal-faq-container {
    padding: 0 1rem;
  }

  .meal-faq-grid {
    grid-template-columns: 1fr;
  }

  .meal-faq-item {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .help-footer {
    padding: 1.25rem 0;
  }

  .help-footer-container {
    padding: 0 1rem;
  }
}