#common-home {
  --home-green: #25B461;
  --home-grey: #E4E4E4;
  --home-white: #F6F7F9;
  --home-black: #000;
}

#common-home.container {
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 1200px) {
  #common-home.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1080px) {
  #common-home.container {
    max-width: 1080px;
  }
}

@media (max-width: 700px) {
  #common-home.container {
    max-width: 700px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 340px) {
  #common-home.container {
    max-width: 340px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.home-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.home-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  width: calc(100% - 80px);
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
}

.home-about__content {
  flex: 1 1 400px;
  max-width: 622px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin-top: 50px;
}

.home-about__heading-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.home-about__title {
  color: var(--home-black);
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 35px;
  margin: 0;
}

.home-about__text-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home-about__subtitle {
  color: var(--home-black);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 35px;
  margin: 0;
}

.home-about__desc {
  color: var(--home-black);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.home-about__content .btn-more-link {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
}

.home-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--home-green);
  color: var(--home-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 10px 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: opacity 0.2s;
}

.home-about__btn:hover {
  color: var(--home-white);
  opacity: 0.9;
}

.home-about__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--home-white);
  border-radius: 15px;
  flex-shrink: 0;
}

.home-about__btn-arrow svg {
  width: 20px;
  height: 20px;
}

.home-about__cards {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.home-about__cards-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.home-about__card {
  flex: 1 1 200px;
  min-width: 200px;
  background: var(--home-grey);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.home-about__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--home-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.home-about__card-icon svg {
  width: 22px;
  height: 22px;
}

.home-about__card-icon svg path {
  fill: var(--home-white);
}

.home-about__card-title {
  color: var(--home-black);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin: 0;
}

.home-about__card-text {
  color: var(--home-black);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}



.ge-stats {
  padding: 40px 0;
  background-color: #fff; 
}

.ge-stats__container {
  width: calc(100% - 40px);
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
  margin-bottom: 120px;
}

.ge-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--Grey, #E4E4E4);
  padding: 74px 100px;
  border-radius: 50px; 
  text-align: center;
}

.ge-stats__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ge-stats__number {
  font-family: "Inter", sans-serif;
  color: var(--Black-text, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ge-stats__label {
  font-family: "Inter", sans-serif;
  color: var(--Black-text, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 480px) {
  .ge-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 30px 15px;
    border-radius: 25px;
  }

  .ge-stats__number {
    font-size: 28px;
  }

  .ge-stats__label {
    font-size: 12px;
  }
}


@media (max-width: 1680px)  {
  .home-about {
    width: calc(100% - 50px);
  }
  .ge-stats__container {
    width: calc(100% - 50px);
  }
}

@media (min-width: 1280px) and (max-width: 1520px) {
  .home-about {
    width: calc(100% - 130px);
  }
  .ge-stats__container {
    width: calc(100% - 130px);
  }
}

@media (min-width: 1280px) and (max-width: 1300px) {
  .home-about {
    width: calc(100% - 10px);
  }
  .ge-stats__container {
    width: calc(100% - 10px);
  }
}

@media (max-width: 1279px)  {
  .home-about {
    width: calc(100% - 10px);
  }
   .ge-stats__container {
    width: calc(100% - 10px);
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 1000px) {
  .ge-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: none;
    padding: 0;
  }
  .ge-stats__item {
    padding: 20px 50px;
    border-radius: 50px;
    background: var(--Grey, #E4E4E4);
  }
}

@media (max-width: 1200px) {
    .home-about {
      flex-direction: column;
    }
    .home-about__content {
      flex: 0;
      max-width: max-content;
    }
    .home-about__cards {
      margin-top: 0;
    }

}

@media (max-width: 739px) {
  .home-about {
    flex-direction: column;
    gap: 50px;
    width: calc(100% - 20px);
  }
  .ge-stats__number {
    font-size: 32px;
  }
  .ge-stats__container {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .home-about__title {
    font-size: 32px;
    line-height: 35px;
  }
  .ge-stats__label {
    font-size: 16px;
  }
  .ge-stats__item {
    padding: 20px 10px;
  }

  .home-about__subtitle {
    font-size: 20px;
  }

  .home-about__desc {
    font-size: 16px;
  }

  .home-about__cards-row {
    flex-direction: column;
  }

  .home-about__card {
    min-width: 100%;
  }
  .home-about__content {
    margin-top: 0;
    gap: 25px;
  }
  .home-about__heading-block {
    gap: 25px;
  }
}
.ge-process-section {
    display: flex;
    width: 100%;
    padding: 100px 80px;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.ge-center-head {
    text-align: center;
    max-width: 632px;
}

.ge-center-head h2, .ge-section-title {
    color: var(--Black-text, #000);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    margin-bottom: 20px;
}

.ge-center-head p, .ge-section-sub {
    color: var(--Black-text, #000);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
    margin: 0;
    max-width: 632px;
}

.ge-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.ge-process-steps::before {
    content: "";
    position: absolute;
    top: 91px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--Green, #25B461);
    z-index: 0;
}

.ge-step {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    padding: 45px 15px;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
}

.ge-step-num {
    width: 94px;
    height: 94px;
    background: var(--Green, #25B461);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--White-text, #F6F7F9);
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

.ge-step h4 {
    color: var(--Black-text, #000);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 44px; 
    margin: 0 0 5px 0;
}

.ge-step p {
    color: var(--Grey-text, #8A8C8D);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 37px;
    margin: 0;
}

@media (min-width: 740px) and (max-width: 1100px) {
    .ge-process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ge-process-steps::before {
        display: none; 
    }
    .ge-process-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .ge-step {
        padding: 0 15px;
        margin-bottom: 40px;
    }
}
@media (max-width: 739px) {
    .ge-process-section {
        padding: 50px 10px;
    }
    .ge-process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ge-process-steps::before {
        display: none;
    }
    .ge-section-title, .ge-center-head h2 {
        font-size: 24px;
    }
    .ge-step {
        padding: 20px 10px;
    }
    .ge-step p, .ge-center-head p {
        font-size: 14px;
    }
}

.global-qa-wrapper {
  width: calc(100% - 40px);
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}




.global-qa-header {
    text-align: center;
    margin-bottom: 20px;
}

.global-qa-title {
    color: var(--Black-text, #000);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; 
    margin: 0;
    margin-bottom: 15px;
}

.global-qa-subtitle {
    color: var(--Black-text, #000);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
    max-width: 632px;
    margin: 0 auto;
}

.global-qa-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start; 
}
.global-qa-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: fit-content;
}

.global-qa-trigger {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--Text, #121212);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
    color: #000;
    text-align: left;
}
.global-qa-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.global-qa-arrow {
    width: 33px;
    height: 33px;
    background: #25B461;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.global-qa-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.global-qa-content p,
.global-qa-content .global-qa-answer,
.global-qa-content .global-qa-answer p {
    color: var(--Text, #121212);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.global-qa-box.active .global-qa-content {
    max-height: 1000px;
    width: 100%;
    padding: 0 20px 20px 20px;
}

.global-qa-box.active .global-qa-arrow {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .global-qa-grid {
        flex-direction: column;
    }
    .global-qa-column {
        width: 100%;
    }
    .global-qa-wrapper {
      margin-bottom: 100px;
    }
}

@media (max-width: 1680px)  {
  .global-qa-wrapper {
    width: calc(100% - 80px);
  }

}

@media (min-width: 1280px) and (max-width: 1520px) {
  .global-qa-wrapper {
    width: calc(100% - 160px);
  }

}

@media (min-width: 1280px) and (max-width: 1300px) {
  .global-qa-wrapper {
    width: calc(100% - 40px);
  }
}

@media (max-width: 1279px)  {
  .global-qa-wrapper {
    width: calc(100% - 40px);
  }

}
@media (max-width: 739px)  {
  .global-qa-wrapper {
    width: calc(100% - 20px);
    margin-bottom: 50px;
  }
  .global-qa-trigger {
    font-size: 14px;
    line-height: 25px;
  }
  .global-qa-subtitle {
    font-size: 14px;
    line-height: 30px;
    text-align: left;
  }
}

