main {
  align-items: center !important;
}
.services-section {

  background: var(--color-bg-secondary);
  gap: 1rem;
  padding: 13vh 1rem 2rem 1rem;
}
.services-section > div {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: clamp(300px, 100vw, 800px);
  gap: 2rem;
  padding: 1rem 1rem;
  box-sizing: border-box;
}
.services-section > div > h3 {
  font-size: 1.5rem;
  margin-right: auto;
}
.services-section > div > p {
  font-size: 0.9rem;
  color: rgb(99, 99, 99);
  text-align: left;
  max-width: 100ch;
}
.services-section > div > ul {
  font-size: 0.9rem;
  color: rgb(99, 99, 99);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.5;
  width: 100%;
}
.services-section > div > p > span,
.services-section > div > ul > li > span {
  color: var(--color-accent-third);
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: var(--color-accent-third);
}
.serv-hero img {
  width: clamp(280px, 100%, 700px);
  border-radius: 10px;
  aspect-ratio: 6/4;
  object-fit: cover;
}
.serv-hero > a {
  background: var(--color-accent-primary);
  color: var(--color-accent-third);

  text-decoration: none;
  font-size: 1rem;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  margin-right: auto;
}

/* ============================= FAQs section ====================================== */

.faqs-container {
  gap: 1rem;
  padding: 2rem 1rem;
}
.faqs-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  background-color: #f4f4f4;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-hard);
  cursor: pointer;
}
.faqs-card > p {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.faq-que {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: var(--color-accent-primary);
}
.faq-awns {
  font-size: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, margin 0.3s ease;
  margin-top:0 ;
}
.faq-awns.toggle {
  max-height: 300px;
  margin-top:2rem ;

}
.faq-que svg {
  width: 50px;
  color: var(--color-accent-third);
}
.faq-que svg.toggle {
  transform: rotateZ(-180deg);
}

/* ============================= defore after section ====================================== */

.bef-aft-img-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.bef-aft-img-container > img {
  width: 100%;
  max-width: 300px;
  flex: 1 1 300px;
  border-radius: 10px;
}


@media screen and (min-width: 1024px) {
  .serv-hero > img{
  aspect-ratio: 6/3;

  }
}