.faqServices {
  width: 100%;
  margin: auto;
  padding: 20px; /* Original padding */
  padding-top: 0;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.faqServices_Block {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  max-width: 1280px;
  color: #000000;
  text-align: center;
}

.faqServices_Column {
  display: flex;
  text-align: start;
  position: relative;
  flex-direction: column; /* Arrange children in a column */
  justify-content: center; /* Center children vertically */
  align-items: flex-start; /* Align children to the left horizontally */
  height: 100%;
}

.faqServiceGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns by default */
  grid-auto-flow: row;
  column-gap: 40px;
  row-gap: 10px;
  width: 100%;
}

.faqServiceItem {
  width: 100%;
  border-bottom: 1px solid var(--Black);
  align-items: center;
  grid-row: auto;
}

.faqServiceItem:hover {
  border-bottom: 1px solid var(--Beige);
}

.faqServiceItem:hover svg path {
  stroke: var(--Black);
}

.faqServiceItem h3 {
  cursor: pointer;
  color: var(--Black);
  font-family: "Work Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
}

.faqServiceItem svg path {
  stroke: var(--Beige);
}

.faqServiceItem p {
  margin: 0 0 1em 0; /* Add space between paragraphs */
  width: 100%; /* Allow full width for content */
  color: var(--Black);
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6; /* Improve readability */
}

.faqServiceItem a {
  color: black;
}

.faqServiceContent {
  margin-bottom: 30px;
  padding: 20px 0; /* Add some padding around the content */
}

ul.wp-block-list {
  list-style: none;
  padding-left: 20px;
}

ul.wp-block-list li {
  position: relative;
}

ul.wp-block-list li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 9px;
  width: 10px;
  height: 2px;
  background-color: var(--Lime-Green);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .faqServiceGrid {
    grid-template-columns: 1fr; /* Single column layout for medium screens */
    column-gap: 30px; /* Reduce column gap */
    row-gap: 20px; /* Increase row gap for better spacing */
  }

  .faqServiceItem h3 {
    font-size: 24px; /* Adjust heading font size */
  }

  .faqServiceItem p {
    font-size: 16px; /* Adjust paragraph font size */
    width: 100%; /* Allow text to use full width */
  }
}

@media (max-width: 768px) {
  .faqServices_Block {
    padding-top: 20px; /* Add padding for small screens */
    padding-bottom: 50px; /* Adjust padding-bottom */
  }

  .faqServiceGrid {
    grid-template-columns: 1fr; /* Keep single column for smaller screens */
    column-gap: 20px; /* Further reduce column gap */
    row-gap: 30px; /* Increase row gap for spacing */
  }

  .faqServiceItem h3 {
    font-size: 22px; /* Further adjust heading font size */
    margin-top: 15px; /* Adjust margin-top */
    margin-bottom: 15px; /* Adjust margin-bottom */
  }

  .faqServiceItem p {
    font-size: 15px; /* Adjust paragraph font size */
    margin-bottom: 20px; /* Adjust margin-bottom */
  }
}

@media (max-width: 480px) {
  .faqServices {
    padding: 15px; /* Further reduce padding for extra small screens */
    padding-bottom: 40px; /* Adjust padding-bottom */
  }

  .faqServices_Block {
    padding-top: 0px; /* Remove top padding for extra small screens */
    padding-bottom: 30px; /* Adjust padding-bottom */
  }

  .faqServiceItem h3 {
    font-size: 20px; /* Further adjust heading font size */
    margin-top: 10px; /* Further adjust margin-top */
    margin-bottom: 10px; /* Further adjust margin-bottom */
  }

  .faqServiceItem p {
    font-size: 14px; /* Further adjust paragraph font size */
    margin-bottom: 15px; /* Further adjust margin-bottom */
  }
}
