html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    --duration: 0;
    scroll-behavior: auto;
  }
}

@media only screen and (min-width: 0rem) {
  .container {
    width: 100%;
    margin: auto;
    max-width: 80rem;
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 48rem) {
  .container {
    width: 100%;
    margin: auto;
    padding: 0 2.5rem;
  }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  .services {
    background-image: url(/assets/images/services/background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(2.5rem, 3rem + 2vw, 5rem);
    color: var(--bodyTextColorWhite);

    text-align: center;
  }

  .services-title {
    margin-block: 2rem;
    font-size: var(--headerFontSize);
  }
  .services-paragraph {
    line-height: 1.5;

    margin: auto;
    max-width: 76ch;
  }

  .price .container {
    padding-block: clamp(2.5rem, 5vw, 4rem);
  }

  .card-container {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
  }

  .card {
    margin: 0;
    width: 100%;
    flex-grow: 1;
    list-style: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .card-title {
    font-weight: bold;
    font-size: var(--headerRegularFontSize);
    margin: 0;
  }

  .card li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-family: sans-serif;
    font-size: var(--bodyFontSize);
  }

  .disclaimer {
    font-size: 0.8rem;
    padding-block: 2rem 3rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
    color: rgb(157, 156, 156);
  }
}
@media only screen and (min-width: 48rem) {
  .card-container {
    display: flex;

    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .card {
    width: 32%;
  }
}

/*-- -------------------------- -->
<---          FAQ               -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #faq {
    scroll-margin-top: 5.5rem;
  }
  .text {
    text-align: center;
    width: 80%;
    text-align: center;
    margin: auto;
  }
  .faq-title {
    margin: 0;
    font-size: var(--headerRegularFontSize);
  }

  .faq-paragrpaph {
    line-height: 1.5;
    font-size: var(--bodyFontSize);
  }

  .faq-block {
    justify-content: center;
    display: flex;
    gap: 0;
    flex-direction: column;
  }

  .left,
  .right {
    flex: 1;
  }

  details {
    background: #f9f9f9;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1rem 2rem;
    max-width: 40rem;
    margin: 1em auto;
    font-weight: 600;
    font-size: var(--bodyBigFontSize);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  details summary {
    cursor: pointer;
    outline: none;
    list-style: none;
    user-select: none;
  }

  details summary::-webkit-details-marker {
    display: none;
  }
  details[open] summary::before {
    content: "▼ ";
    color: var(--primary);
  }
  details summary::before {
    content: "▶ ";
    color: var(--primary);
  }

  details p {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    font-size: var(--bodyFontSize);
  }
}

@media only screen and (min-width: 48rem) {
  .text {
    text-align: center;
    width: 60%;
    text-align: center;
  }

  .faq-block {
    flex-direction: row;
    justify-content: center;
    display: flex;
    gap: 1.5rem;
  }
}
