

.qtech-body {
  /*--primary-color: #0f4229;*/
  --secondary-color: rgb(0, 0, 0);
  --text-color-light: rgb(255, 255, 255);
  --text-color-dark: #0f4229;
  --text-color-grey: rgb(131, 131, 131);
  --transition: 0.5s linear;
  --transitionFast: 0.5s ease-in-out;
  font-family: "Mako", serif;
  font-size: 16px;
  position: relative;
}
a {
  text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold !important;
  line-height: 1.2 !important;
}
.qtec-h1 {
  font-size: 4.375em;
}
.qtec-h2 {
  font-size: 3.75em;
}
.qtec-h3 {
  font-size: 3.4375em;
}
.qtec-h4 {
  font-size: 3.125em;
  color: #0f4229;
}
.qtec-h5 {
  font-size: 2.8125em;
}
.qtec-h6 {
  font-size: 1.5625em;
}
.qtec-desc {
      font-size: 17px;
      font-family: "Mako", serif; 
}

.qtec-btn {
  background-color: var(--primary-color);
  height: 60px;
  padding: 0 45px;
  font-size: 1.25em;
  color: var(--text-color-dark);
  font-weight: 600;
  border-radius: 31px;
  border: 0;
  position: relative;
  margin-top: 30px;
}

.qtec-tag {
  font-size: 1em;
  font-weight: 600;
  color: var(--text-color-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.qtec-tag img {
  width: 45px;
    text-align: center;
    height: 50px;
}
.textDark {
  color: var(--text-color-dark);
  font-family: "Mako", serif;
}
.textLight {
  color: var(--text-color-light);
}
.textGrey {
  color: var(--text-color-grey);
}
.qtec-sectionMargin {
  margin-top: -80px;
  margin-bottom: 100px;
}

.qtec-sectionPadding {
  padding-top: 100px;
  padding-bottom: 100px;
}



.faq-section {
        max-width: 800px;
        margin: 0 auto;
      font-family: "Mako", serif;
      }
      .faq-section h2 {
        text-align: center;
        margin-bottom: 20px;color: #0f4229;
      }
      .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
      }
      .faq-question {
        font-weight: bold;
        cursor: pointer;
        position: relative;
        color: #0f4229;
        font-size: 18px;
      }
      .faq-question::after {
        content: "+";
        position: absolute;
        right: 0;
      }
      .faq-answer {
        display: none;
        padding-top: 5px;
        color: #0f4229;
        font-size: 15px;
      }
      .faq-item.active .faq-answer {
        display: block;
      }
      .faq-item.active .faq-question::after {
        content: "-";
      }