.gray-wrapper {
  width: 100%;
  max-width: 1740px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 50px;
  padding: 80px 0;
}

/* Features Cards Section */
.features-section {
  width: 100%;
  max-width: 1660px;
  margin: 60px auto;
  box-sizing: border-box;
}

.text-block {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto 60px;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.text-block-subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.4;
}

.text-block-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.text-block-title {
  font-family: 'Onest', sans-serif;
  font-size: 90px;
  font-weight: 900;
  color: #000000;
  margin: 0;
  line-height: 1;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.text-block-circle {
  width: 54px;
  height: 54px;
  background-color: #dde96e;
  border-radius: 50%;
  position: absolute;
  left: 10%;
  top: 10px;
  bottom: auto;
  z-index: 1;
}

.features-header {
  display: none;
}


.features-cards {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.feature-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.feature-card-title {
  font-family: 'Onest', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.feature-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  margin: 0;
  line-height: 1.5;
}

/* Intermediate Viewports (992px - 1200px) */
@media (max-width: 1200px) and (min-width: 992px) {
  .gray-wrapper {
    padding: 60px 20px;
    border-radius: 40px;
  }
  .text-block-title {
    font-size: 64px;
  }
  .text-block-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .features-cards {
    gap: 24px;
  }
  .feature-card {
    padding: 30px 24px;
    border-radius: 36px;
  }
  .feature-card-title {
    font-size: 28px;
  }
}


/* About Accordion Section */
.about-accordion-section {
  width: 100%;
  max-width: 1660px;
  margin: 100px auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.about-accordion-tabs {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
}

.about-accordion-tab {
  display: flex;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  border-top: 1px solid #ccc;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.about-accordion-tab:last-child {
  border-bottom: 1px solid #ccc;
}

.about-accordion-tab.active {
  opacity: 1;
}

.tab-num {
  font-family: 'Onest', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-right: 20px;
}

.tab-title {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.about-accordion-content-wrapper {
  flex: 1;
  background-color: #dde96e;
  border-radius: 40px;
  padding: 60px;
}

.about-accordion-content {
  display: none;
}

.about-accordion-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.about-accordion-content p {
  font-family: 'Onest', sans-serif;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

/* Courses Section */
.courses-section {
  width: 100%;
  max-width: 1660px;
  margin: 100px auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.courses-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  color: #222222;
  margin-bottom: 60px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.course-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 391px;
  box-sizing: border-box;
  text-decoration: none;
  color: #000000;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              color 0.35s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.course-card:not(.course-card-accent):not(.course-card-dark):not(.course-card-with-bg):hover {
  background-color: #CAE37A;
}

.course-card-accent {
  background-color: #DDE96E;
  color: #000000;
}
.course-card-accent:hover {
  background-color: #CAE37A;
}

.course-card-dark {
  background-color: #1E1C1C;
  color: #E0E9DB;
}
.course-card-dark:hover {
  background-color: #2D2A2A;
  color: #FFFFFF;
}
.course-card-dark .course-level {
  color: #E0E9DB;
}
.course-card-dark .course-arrow path {
  fill: #E0E9DB;
}
.course-card-dark .course-title,
.course-card-dark .course-desc {
  color: #E0E9DB;
}
.course-card-dark:hover .course-level,
.course-card-dark:hover .course-title,
.course-card-dark:hover .course-desc {
  color: #FFFFFF;
}
.course-card-dark:hover .course-arrow path {
  fill: #FFFFFF;
}

/* Image Background Card */
.course-card-with-bg {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.course-card-with-bg .course-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card-with-bg:hover .course-bg-image {
  transform: scale(1.06);
}

.course-card-with-bg .course-level-wrapper {
  color: #DDE96E;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 3;
}
.course-card-with-bg .course-level {
  color: #DDE96E;
}
.course-card-with-bg .course-arrow path {
  fill: #DDE96E;
}

.course-card-with-bg .course-blur-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 30%;
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 25%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 25%, black 100%);
  z-index: 2;
  border-radius: 0 0 30px 30px;
}

.course-card-with-bg .course-content-wrapper {
  position: relative;
  z-index: 3;
  margin-top: auto;
  background: transparent;
}

.course-card-with-bg .course-title {
  color: #DDE96E;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.course-card-with-bg .course-desc {
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Level & Arrow Header */
.course-level-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.course-level {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
  text-align: right;
  transition: color 0.35s ease;
}

.course-arrow {
  width: 19px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-arrow path {
  transition: fill 0.35s ease;
}

.course-card:hover .course-arrow {
  transform: translateX(4px);
}

/* Content & Animated Description */
.course-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.course-title {
  font-family: 'Onest', sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 34px;
  color: inherit;
  margin: 0;
  transition: color 0.35s ease;
}

.course-desc-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(8px);
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-desc-inner {
  overflow: hidden;
}

.course-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: inherit;
  margin: 0;
  padding-top: 5px;
}

.course-card:hover .course-desc-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.course-card-footer {
  display: none;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA Block (Figma: "CTA block") */
.cta-block {
  width: 100%;
  max-width: 1660px;
  margin: 100px auto;
  height: 662px;
  box-sizing: border-box;
  position: relative;
  background-color: #dde96e;
  border-radius: 50px;
  overflow: hidden;
}

.cta-block-graphic {
  position: absolute;
  left: 508px;
  top: 227px;
  width: 805px;
  height: 333px;
  transform: rotate(3deg);
  z-index: 1;
  pointer-events: none;
}

.cta-block-graphic img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta-arrow-desktop {
  display: block;
}

.cta-arrow-mobile {
  display: none;
}

.cta-block-title {
  font-family: 'Onest', sans-serif;
  font-size: 55px;
  font-weight: 900;
  color: #222222;
  width: 923px;
  margin: 0;
  line-height: 50px;
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
}

.cta-block-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: #151313;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid #151313;
  border-radius: 100px;
  padding: 20px 50px;
  transition: background-color 0.3s;
  white-space: nowrap;
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 2;
}

.cta-block-button:hover {
  background-color: rgba(21, 19, 19, 0.08);
}

.cta-block-button-arrow {
  width: 19px;
  height: auto;
}

/* Teachers Section */
.teachers-section {
  width: 100%;
  max-width: 1660px;
  margin: 100px auto;
  box-sizing: border-box;
}

.teachers-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.teachers-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 20px 0;
  line-height: 50px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.teachers-title::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  background-color: #dde96e;
  border-radius: 50%;
  z-index: -1;
}

.teachers-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  max-width: 830px;
  line-height: 1.4;
}

.teachers-container {
  display: flex;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 40px;
  gap: 60px;
  min-height: 600px;
}

.teachers-left {
  flex: 0 0 45%;
  position: relative;
}

.teacher-large-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.teacher-large-photo.active {
  opacity: 1;
  pointer-events: auto;
}

.teachers-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-right: 20px;
}

.teacher-list-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}

.teacher-list-item:hover {
  opacity: 0.8;
}

.teacher-list-item.active {
  cursor: default;
}

.teacher-list-item.active:hover {
  opacity: 1;
}

.teacher-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.teacher-card-photo-mobile {
  display: none;
}

.teacher-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.teacher-item-title {
  display: flex;
  flex-direction: column;
}

.teacher-name {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 5px 0;
}

.teacher-job {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #777777;
}

.teacher-item-body {
  margin-top: 20px;
  padding-left: 80px;
  display: none;
}

.teacher-list-item.active .teacher-item-body {
  display: block;
  animation: fadeIn 0.4s ease;
}

.teacher-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.teacher-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.teacher-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888;
}

.teacher-separator {
  height: 1px;
  background-color: #e0e0e0;
  margin: 10px 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reviews Section */
.reviews-section {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 80px;
  background-color: #f5f5f5;
  border-radius: 50px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 350px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  overflow: hidden;
}

.reviews-top-bar {
  display: contents;
}

.reviews-title {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  color: #000000;
  margin: 0;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.reviews-title::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  background-color: #dde96e;
  border-radius: 50%;
  z-index: -1;
}

.reviews-arrows {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}

.review-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #dde96e;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.review-arrow:hover {
  opacity: 0.8;
}

.reviews-subtitle {
  grid-column: 1;
  grid-row: 2;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #222222;
  margin: 40px 0 0 0;
  max-width: 500px;
  line-height: 1.4;
  padding-right: 60px;
}

.reviews-main {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
}

.reviews-carousel {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.reviews-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.reviews-carousel {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.reviews-track {
  display: flex;
  gap: 20px;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.review-icon {
  width: 32px;
  height: 32px;
}

.review-author {
  font-family: 'Onest', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 20px 0;
}

.review-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  margin: 0;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  width: 100%;
  max-width: 1660px;
  margin: 100px auto;
  box-sizing: border-box;
}

.faq-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  color: #000000;
  margin: 0 0 50px;
  text-align: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease;
}

.faq-item[open] {
  background-color: #dde96e;
}

.faq-question {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dde96e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  background-color: #151313;
}

.faq-item[open] .faq-arrow svg path {
  stroke: #dde96e;
}

.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item[open] .faq-answer-wrap {
  max-height: 1000px;
}

.faq-answer {
  padding-top: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}

/* Improvements Section */
.improvements-section {
  width: 100%;
  max-width: 1660px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  box-sizing: border-box;
  background-color: #ebebeb;
  border-radius: 50px;
  padding: 80px 100px;
}

.improvements-top {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.improvements-text {
  max-width: 780px;
}

.improvements-title {
  font-family: 'Onest', sans-serif;
  font-size: 55px;
  font-weight: 900;
  color: #222222;
  margin: 0 0 30px 0;
  line-height: 50px;
}

.improvements-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #555555;
  margin: 0;
  line-height: 1.4;
}

.improvements-pros {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 36px;
  row-gap: 30px;
}

.pro-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.pro-num {
  font-family: 'Onest', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #9db075;
  letter-spacing: -0.02em;
}

.pro-text {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222222;
}

.improvements-bottom {
  display: flex;
  justify-content: flex-end;
}

.btn-solid,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #151313;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  padding: 18px 40px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-solid:hover,
.btn-primary:hover {
  background-color: #333333;
  text-decoration: none;
}

/* CTA Section */
.cta-section {
  width: 100%;
  max-width: 1660px;
  margin: 100px auto 0;
  background-color: transparent;
  box-sizing: border-box;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 20px 20px;
  box-sizing: border-box;
  gap: 100px;
  background-color: #f5f5f5;
  border-radius: 50px;
  overflow: hidden;
}

.cta-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
  width: 620px;
  max-width: 100%;
}

.cta-circle {
  width: 650px;
  height: 650px;
  background-color: #dde96e;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 0;
  margin-bottom: -10px;
  display: block;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  color: #151313;
  margin: 0;
  text-align: center;
}

/* Text block + CTA (used for the standalone "text block + CTA" card, e.g. on the Methodic page) */
.text-block-cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 100px 100px 100px 0;
  box-sizing: border-box;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
}

.text-block-cta-image-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 714px;
  max-width: 45%;
  aspect-ratio: 714 / 433;
  border-radius: 35px;
  overflow: hidden;
}

.text-block-cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-block-cta-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.text-block-cta-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.04;
  color: #000000;
  margin: 0;
  word-break: break-word;
}

.cta-highlight-blur {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.cta-highlight-blur::before {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 16px;
  background-color: #dde96e;
  filter: blur(4px);
  z-index: -1;
}

/* Explicit override: buttons.css also defines .btn-primary (loaded after this
   file), which would otherwise turn this button the same yellow-green as the
   glow behind it and make it unreadable. */
a.cta-btn.btn-primary {
  background-color: #151313;
  color: #ffffff;
}
a.cta-btn.btn-primary:hover {
  background-color: #333333;
  color: #ffffff;
}

.squiggle-underline {
  position: relative;
  display: inline-block;
}
.squiggle-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 8px;
  background: url("../images/underline.svg") no-repeat;
  background-size: 100% 100%;
}

.cta-highlight {
  display: inline-block;
  white-space: nowrap;
  background-color: #dde96e;
  padding: 0 8px;
  border-radius: 6px 12px 8px 14px;
  transform: rotate(-1deg);
}

/* Phone CTA (Contacts) Section */
.phone-cta-section {
  width: 100%;
  max-width: 1660px;
  margin: -168px auto 60px;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  background-color: #cae37a;
  border-radius: 30px;
  padding: 80px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.phone-cta-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.04;
}

.phone-cta-subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  margin: 20px 0 0;
}

.phone-cta-webform-wrapper .inline-form-inner {
  padding: 0;
  background-color: transparent;
  width: auto;
  max-width: none;
}

.phone-cta-webform-wrapper form .inline-form-content,
.phone-cta-webform-wrapper .form-actions {
  display: none;
}

.phone-cta-form {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #ffffff;
  border-radius: 90px;
  padding: 2px 2px 2px 40px;
  height: 67px;
  box-sizing: border-box;
}

.phone-cta-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #151313;
  width: 220px;
}

.phone-cta-input::placeholder {
  color: #d2d2d2;
}

.phone-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #151313;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid #151313;
  border-radius: 100px;
  padding: 20px 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.phone-cta-button:hover {
  background-color: #333333;
}

.phone-cta-button .phone-cta-button-icon {
  display: none;
}

.phone-cta-button .phone-cta-button-text {
  display: inline;
}

/* Map Section */
.map-section {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 50px;
  display: block;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 43.7%;
  border-radius: 50px;
  overflow: hidden;
}

.map-embed #leaflet-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Footer Section */
.footer-section {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto 40px;
  background-color: #191919;
  border-radius: 50px;
  padding: 80px 100px;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-heading {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  color: #ffffff;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-phone, .footer-address {
  font-family: 'Onest', sans-serif;
  font-size: 26px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-phone {
  color: #dde96e;
}

.footer-phone-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-phone-link:hover {
  opacity: 0.85;
}

.footer-address {
  color: #e0e9db;
}

.footer-socials {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.social-link img {
  display: block;
  height: 40px;
  width: auto;
}

.working-hours-card {
  background-color: #262626;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 460px;
  box-sizing: border-box;
}

.working-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.working-title {
  font-family: 'Onest', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  line-height: 30px;
}

.working-schedule {
  display: flex;
  align-items: center;
  gap: 16px;
}

.working-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.working-weekend {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.7;
  margin-top: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #333333;
}

.footer-legal {
  display: flex;
  justify-content: flex-start;
  gap: 120px;
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  color: #bababa;
  line-height: 1.5;
}

.footer-legal p {
  margin: 0;
}

/* About Us Accordion Section (Figma node 270:3193) */
.about-us-accordion-section {
  width: 100%;
  max-width: 1660px;
  margin: 80px auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.about-us-container {
  display: flex;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 58px 55px;
  gap: 40px;
  box-sizing: border-box;
  align-items: center;
}

.about-us-left {
  flex: 0 0 589px;
  width: 589px;
  height: 766px;
  background-color: #F3F3F3;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-photo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.about-us-photo-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-us-large-photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

.about-us-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 58px;
  height: 766px;
  box-sizing: border-box;
}

.about-us-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 20px;
  border-radius: 20px;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.about-us-card-image-wrapper {
  display: none;
}

.about-us-item:hover {
  background-color: #fafaf8;
}

.about-us-item.active {
  cursor: default;
  background-color: transparent;
}

.about-us-item-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.about-us-item-num-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex: 0 0 320px;
  min-width: 280px;
}

.about-us-num {
  font-family: 'Onest', sans-serif;
  font-size: 47px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #9DB075;
  min-width: 80px;
  flex-shrink: 0;
}

.about-us-title {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.about-us-item-content-area {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-us-subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.45;
  display: block;
}

.about-us-item.active .about-us-subtitle {
  display: none;
}

.about-us-description {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  display: none;
}

.about-us-item.active .about-us-description {
  display: block;
  animation: aboutFadeIn 0.35s ease;
}

@keyframes aboutFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for About Us */
@media (max-width: 1200px) and (min-width: 992px) {
  .about-us-container {
    padding: 40px 30px;
    gap: 30px;
  }
  .about-us-left {
    flex: 0 0 450px;
    width: 450px;
    height: 650px;
  }
  .about-us-right {
    height: auto;
    gap: 30px;
  }
  .about-us-item-num-title {
    flex: 0 0 250px;
    min-width: 220px;
  }
  .about-us-num {
    font-size: 38px;
  }
}

/* Mobile About Us Horizontal Scroll (Figma node 463:4493) */
@media (max-width: 991px) {
  .about-us-accordion-section {
    padding: 0;
    margin: 40px auto;
  }
  .about-us-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    width: 100%;
  }
  .about-us-left {
    display: none !important;
  }
  .about-us-right {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding: 10px 20px 30px !important;
    margin: 0 !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .about-us-right::-webkit-scrollbar {
    display: none !important;
  }
  .about-us-item {
    display: flex !important;
    flex-direction: column !important;
    width: 350px !important;
    min-width: 320px !important;
    max-width: 350px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    background-color: #FFFFFF !important;
    border-radius: 30px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    gap: 20px !important;
    opacity: 1 !important;
    border: none !important;
    cursor: default !important;
  }
  .about-us-card-image-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #F3F3F3 !important;
    border-radius: 25px !important;
    width: 100% !important;
    height: 350px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }
  .about-us-card-image {
    max-width: 80% !important;
    max-height: 80% !important;
    object-fit: contain !important;
    display: block !important;
  }
  .about-us-item-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .about-us-item-num-title {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    width: 100% !important;
    flex: none !important;
  }
  .about-us-num {
    font-family: 'Onest', sans-serif !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #9DB075 !important;
    letter-spacing: -0.02em !important;
    min-width: 55px !important;
    flex-shrink: 0 !important;
  }
  .about-us-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    margin: 0 !important;
  }
  .about-us-item-content-area {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .about-us-subtitle {
    display: none !important;
  }
  .about-us-description {
    display: block !important;
    opacity: 1 !important;
    max-height: none !important;
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    margin: 0 !important;
  }
}

/* Simple English Section (Figma node 265:3047) */
.simple-english-section {
  width: 100%;
  max-width: 1660px;
  margin: 80px auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.simple-english-container {
  background-color: #CAE37A;
  border-radius: 35px;
  padding: 89px 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  box-sizing: border-box;
  min-height: 749px;
}

.simple-english-content {
  flex: 1;
  min-width: 0;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.simple-english-kicker {
  font-family: 'Onest', sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.simple-english-title {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  color: #000000;
  margin: 0;
}

.simple-english-description {
  font-family: 'Onest', sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}

.simple-english-image-container {
  flex: 0 0 auto;
  max-width: 652px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-english-image {
  width: 100%;
  max-width: 652px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsive adjustments for Simple English */
@media (max-width: 1200px) and (min-width: 769px) {
  .simple-english-container {
    padding: 60px 50px;
    gap: 40px;
    min-height: auto;
  }
  .simple-english-kicker {
    font-size: 44px;
    line-height: 1.1;
  }
  .simple-english-title {
    font-size: 38px;
    line-height: 1.15;
  }
  .simple-english-description {
    font-size: 22px;
  }
  .simple-english-image-container {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .simple-english-section {
    padding: 0 20px;
    margin: 40px auto;
  }
  .simple-english-container {
    background-color: #CAE37A;
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
    align-items: stretch;
    min-height: auto;
  }
  .simple-english-image-container {
    order: -1;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .simple-english-image {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    display: block;
  }
  .simple-english-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }
  .simple-english-kicker {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin: 0;
  }
  .simple-english-title {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin: 0;
  }
  .simple-english-description {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
  }
}

/* Methodology Section (Figma nodes 280:3349, 467:5211) */
.methodology-section {
  padding: 60px 20px;
}
.methodology-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.methodology-block {
  display: flex;
  align-items: center;
  gap: 40px;
}
.methodology-block.align-right {
  flex-direction: row-reverse;
}
.methodology-block-content {
  flex: 1;
}
.methodology-block-title {
  font-size: 28px;
  margin-bottom: 20px;
}
.methodology-block-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.methodology-block-image-wrapper {
  flex: 1;
  min-height: 250px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  /* Standalone text-block-cta on methodology page */
  .text-block-cta-content {
    flex-direction: column !important;
    padding: 30px 20px !important;
    border-radius: 30px !important;
    gap: 24px !important;
    background-color: #FFFFFF !important;
  }
  .text-block-cta-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 220px !important;
    border-radius: 20px !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
  }
  .text-block-cta-image {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 240px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 20px !important;
  }
  .text-block-cta-text {
    width: 100% !important;
    text-align: left !important;
  }
  .text-block-cta-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  /* Methodology Blocks Section */
  .methodology-section {
    padding: 40px 20px;
  }
  .methodology-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 80px !important;
  }
  .methodology-block,
  .methodology-block.align-right,
  .methodology-block.align-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .methodology-block-image-wrapper {
    order: 1 !important;
    width: 100% !important;
    min-height: 220px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .methodology-block-image-wrapper img {
    max-width: 100% !important;
    max-height: 280px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }
  .methodology-block-content {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .methodology-block-title,
  .methodology-block-title div {
    font-family: 'Onest', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 30px !important;
    color: #000000 !important;
    margin: 0 !important;
  }
  .methodology-block-description,
  .methodology-block-description div {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    margin: 0 !important;
  }
}

/* Metrics Section (Figma node 283:3786) */
.metrics-section {
  padding: 100px 40px;
  background-color: #1E1C1C;
  max-width: 1660px;
  margin: 0 auto 40px;
  border-radius: 30px;
  box-sizing: border-box;
}
.metrics-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.metrics-grid,
.metrics-grid > div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}
.metric-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  color: #FFFFFF;
}
.metric-value {
  font-family: 'Onest', sans-serif;
  font-size: 95px;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}
.metric-description {
  font-family: 'Onest', sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
  max-width: 360px;
}

@media (max-width: 1024px) {
  .metrics-grid,
  .metrics-grid > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .metric-value {
    font-size: 64px;
  }
  .metric-description {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .metrics-section {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .metrics-grid,
  .metrics-grid > div {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .metric-value {
    font-size: 48px;
  }
  .metric-description {
    font-size: 18px;
  }
}

.methodology-block-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* Text Card Section (Figma node 294:3902) */
.text-card-section {
  max-width: 1660px;
  margin: 0 auto 40px;
  padding: 80px 40px;
  background-color: #FFFFFF;
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.text-card-title {
  position: relative;
  display: inline-block;
  font-family: 'Onest', sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 34px;
  color: #000000;
  margin: 0;
  max-width: 770px;
  text-align: center;
}
.text-card-title .highlight-circle {
  position: relative;
  display: inline;
  z-index: 1;
}
.text-card-title .highlight-circle::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #DDE96E;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 768px) {
  .text-card-section {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .text-card-title {
    font-size: 22px;
    line-height: 28px;
  }
  .text-card-title .highlight-circle::before {
    width: 32px;
    height: 32px;
  }
}

/* Hero Floating Icons */
.hero-section { position: relative; overflow: hidden; }
.hero-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.floating-icon {
  position: absolute;
}
.floating-icon.icon-1 { top: 10%; right: 15%; width: 100px; animation: float 6s ease-in-out infinite; }
.floating-icon.icon-2 { bottom: 20%; left: 10%; width: 60px; animation: float 5s ease-in-out infinite reverse; }
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   Mobile Responsive Rules (<= 991px)
   ========================================================================== */
@media (max-width: 991px) {
  /* Methodology Section */
  .gray-wrapper {
    padding: 40px 0;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
  }

  .text-block {
    padding: 0 16px;
    margin: 0 auto 30px;
    gap: 20px;
  }

  .text-block-subtitle {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #000000;
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
  }

  .text-block-title-container {
    position: relative;
    display: inline-block;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
  }

  .text-block-title {
    font-family: 'Onest', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 36px;
    color: #000000;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    display: inline;
  }

  .text-block-circle {
    width: 38px;
    height: 38px;
    background-color: #dde96e;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    bottom: -4px;
    top: auto;
    left: auto;
    z-index: 1;
  }

  /* Horizontally Scrollable Features Section */
  .features-section {
    width: 100%;
    margin: 30px 0 50px 0;
    padding: 0;
    overflow: hidden;
  }

  .features-cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 16px 25px;
    margin: 0;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .features-cards::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 320px;
    width: 320px;
    min-width: 300px;
    max-width: 85vw;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    object-fit: contain;
  }

  .feature-card-title {
    font-family: 'Onest', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 34px;
    color: #000000;
    margin: 0 0 16px 0;
    text-align: left;
  }

  .feature-card-desc {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    text-align: left;
  }

  /* Improvements Section Mobile */
  .improvements-section {
    background-color: #EBEBEB;
    border-radius: 0;
    padding: 40px 20px;
    margin: 40px auto 0;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .improvements-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .improvements-text {
    max-width: 100%;
  }

  .improvements-title {
    font-family: 'Onest', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 40px;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: left;
  }

  .improvements-desc {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #000000;
    margin: 0;
    text-align: left;
  }

  .improvements-pros {
    position: relative;
    display: block;
    min-height: 120px;
    width: 100%;
    margin: 10px 0 0;
  }

  .pro-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
  }

  .pro-item.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .pro-num {
    font-family: 'Onest', sans-serif;
    font-size: 47px;
    font-weight: 900;
    color: #9DB075;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .pro-text {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
  }

  .improvements-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .improvements-bottom .btn-solid {
    background-color: #151313;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    border-radius: 100px;
    padding: 18px 48px;
    width: max-content;
  }

  /* Courses Section Mobile */
  .courses-section {
    width: 100%;
    margin: 50px 0 30px;
    padding: 0;
    overflow: hidden;
  }

  .courses-title {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin: 0 0 20px 16px;
    text-align: left;
  }

  .courses-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 16px 30px;
    margin: 0;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .courses-grid::-webkit-scrollbar {
    display: none;
  }

  .course-card {
    flex: 0 0 350px;
    width: 350px;
    min-width: 320px;
    max-width: 88vw;
    height: 625px;
    min-height: 600px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transform: none !important;
  }

  .course-card:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  }

  .course-level-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }

  .course-level {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
  }

  .course-arrow {
    width: 17.5px;
    height: 14px;
  }

  .course-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    width: 100%;
  }

  .course-title {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin: 0;
  }

  .course-desc-wrapper {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    grid-template-rows: 1fr !important;
    transform: none !important;
  }

  .course-desc-inner {
    opacity: 1 !important;
    transform: none !important;
    overflow: visible !important;
  }

  .course-desc {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    color: #000000;
    margin: 0;
  }

  .course-card-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .course-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #DDE96E;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    border-radius: 100px;
    padding: 16px 36px;
    width: max-content;
    box-sizing: border-box;
  }

  .course-card-dark {
    background-color: #1E1C1C;
    color: #FFFFFF;
  }

  .course-card-dark .course-level,
  .course-card-dark .course-title,
  .course-card-dark .course-desc {
    color: #FFFFFF;
  }

  .course-card-dark .course-arrow path {
    fill: #FFFFFF;
  }

  .course-card-with-bg {
    position: relative;
    overflow: hidden;
  }

  .course-card-with-bg .course-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .course-card-with-bg .course-blur-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 25%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 20%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 20%, black 100%);
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }

  .course-card-with-bg .course-level {
    color: #DDE96E;
  }

  .course-card-with-bg .course-arrow path {
    fill: #DDE96E;
  }

  .course-card-with-bg .course-title {
    color: #DDE96E;
  }

  .course-card-with-bg .course-desc {
    color: #FFFFFF;
  }

  /* Pre-Footer CTA Section 1 Mobile (Figma node 369:753) */
  .cta-section {
    width: 100%;
    margin: 40px auto 0;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    z-index: 1;
  }

  .cta-content {
    background-color: transparent;
    border-radius: 0;
    padding: 20px 16px 0px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-text {
    max-width: 100%;
    text-align: center;
  }

  .cta-title {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    text-align: center;
    margin: 0;
  }

  .cta-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background-color: #DDE96E;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
  }

  .cta-image {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    display: block;
  }

  /* Pre-Footer Phone CTA Section 2 Mobile (Figma node 395:2024) */
  .phone-cta-section {
    background-color: #CAE37A;
    border-radius: 0;
    padding: 40px 20px;
    margin: -65px auto 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
  }

  .phone-cta-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .phone-cta-title {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin: 0;
    text-align: left;
  }

  .phone-cta-subtitle {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    text-align: left;
  }

  .phone-cta-form,
  .inline-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 90px;
    height: 67px;
    padding: 2px 2px 2px 24px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .phone-cta-input,
  .inline-input-phone {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #000000;
    width: auto;
    min-width: 0;
  }

  .phone-cta-button,
  .inline-form-submit {
    background: #151313 url("../images/btn-arrow-icon.svg") no-repeat center center !important;
    background-size: 26px 22px !important;
    color: transparent !important;
    font-size: 0 !important;
    border-radius: 50% !important;
    width: 63px !important;
    min-width: 63px !important;
    height: 63px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    flex-shrink: 0 !important;
    transition: background-color 0.2s ease;
  }

  .phone-cta-button .phone-cta-button-text,
  .phone-cta-button .phone-cta-button-icon {
    display: none !important;
  }

  /* Map Section Mobile (Portrait aspect ratio) */
  .map-section {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
  }

  .map-embed {
    border-radius: 0;
    padding-bottom: 0;
    height: 520px;
    min-height: 500px;
    position: relative;
  }

  .map-embed #leaflet-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .map-image {
    border-radius: 0;
  }

  /* Footer Section Mobile (Figma node 369:757) */
  .footer-section {
    background-color: #191919;
    border-radius: 0;
    padding: 40px 20px 30px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    align-items: stretch;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .footer-heading {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF;
    margin: 0;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-phone, .footer-address {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .footer-phone svg, .footer-address svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 10px;
    width: 100%;
  }

  .social-link img {
    height: 40px;
    width: auto;
    display: block;
  }

  .footer-right {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .working-hours-card {
    background-color: transparent !important;
    border: none !important;
    border-top: 1px solid #9DB075 !important;
    border-bottom: 1px solid #9DB075 !important;
    border-radius: 0 !important;
    padding: 30px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .working-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .working-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 30px !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .working-weekend {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    opacity: 0.8 !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .working-schedule {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .working-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    color: #FFFFFF !important;
  }

  .footer-divider {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    color: #888888;
    line-height: 1.5;
  }

  /* Form / CTA Block Mobile (Figma node 369:717) */
  .cta-arrow-desktop {
    display: none !important;
  }

  .cta-arrow-mobile {
    display: block !important;
    width: 230px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .cta-block {
    width: 100% !important;
    border-radius: 0 !important;
    padding: 40px 20px 40px !important;
    background-color: #DDE96E !important;
    margin: 40px auto 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    height: auto !important;
    gap: 20px !important;
  }

  .cta-block-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 30px !important;
    color: #151313 !important;
    text-align: left !important;
    margin: 0 !important;
    max-width: 100% !important;
    position: static !important;
    width: 100% !important;
  }

  .cta-block-graphic {
    position: static !important;
    transform: none !important;
    width: 230px !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 10px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .cta-block-button {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: transparent !important;
    color: #151313 !important;
    border: 1px solid #151313 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    border-radius: 100px !important;
    padding: 16px 40px !important;
    text-decoration: none !important;
    align-self: flex-end !important;
    margin: 0 0 0 auto !important;
    width: max-content !important;
    transition: background-color 0.2s ease !important;
  }

  .cta-block-button:hover {
    background-color: rgba(21, 19, 19, 0.08) !important;
  }

  .cta-block-button-arrow {
    display: none !important;
  }

  /* Teachers Section Mobile (Figma node 369:722) */
  .teachers-section {
    width: 100% !important;
    margin: 40px auto 0 !important;
    padding: 40px 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .teachers-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .teachers-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 30px !important;
    color: #000000 !important;
    margin: 0 !important;
    text-align: left !important;
    position: relative !important;
  }

  .teachers-title::before {
    display: none !important;
  }

  .teachers-subtitle {
    font-family: 'Onest', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #555555 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .teachers-container {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    border: none !important;
    box-shadow: none !important;
  }

  .teachers-left {
    display: none !important;
  }

  .teachers-right {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding: 0 20px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .teachers-right::-webkit-scrollbar {
    display: none !important;
  }

  .teacher-separator {
    display: none !important;
  }

  .teacher-list-item {
    flex: 0 0 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
    width: 350px !important;
    scroll-snap-align: start !important;
    background-color: #FFFFFF !important;
    border-radius: 30px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    opacity: 1 !important;
    border: none !important;
    cursor: default !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  }

  .teacher-card-photo-mobile {
    display: block !important;
    width: 100% !important;
    height: 380px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
  }

  .teacher-avatar {
    display: none !important;
  }

  .teacher-item-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  .teacher-item-title {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .teacher-name {
    font-family: 'Onest', sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  .teacher-job {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000000 !important;
  }

  .teacher-item-body {
    display: block !important;
    padding: 0 !important;
    margin-top: 6px !important;
  }

  .teacher-bullets {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: #000000 !important;
  }

  .teacher-bullets li {
    padding-left: 0 !important;
  }

  .teacher-bullets li::before {
    display: none !important;
  }

  /* Reviews Section Mobile (Figma node 369:729) */
  .reviews-section {
    width: 100% !important;
    margin: 40px auto 0 !important;
    padding: 40px 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .reviews-top-bar {
    display: block !important;
    padding: 0 20px !important;
    margin-bottom: 10px !important;
  }

  .reviews-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 !important;
    text-align: left !important;
    position: relative !important;
  }

  .reviews-title::after {
    display: none !important;
  }

  .reviews-arrows {
    display: none !important;
  }

  .reviews-subtitle {
    font-family: 'Onest', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    padding: 0 20px !important;
    margin: 0 0 24px 0 !important;
    text-align: left !important;
  }

  .reviews-main,
  .reviews-carousel {
    width: 100% !important;
    overflow: visible !important;
    display: block !important;
  }

  .reviews-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding: 0 20px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .reviews-track::-webkit-scrollbar {
    display: none !important;
  }

  .review-card {
    flex: 0 0 350px !important;
    width: 350px !important;
    scroll-snap-align: start !important;
    background-color: #FFFFFF !important;
    border-radius: 30px !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    min-height: 468px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  }

  .review-card-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .review-avatar {
    width: 156px !important;
    height: 156px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }

  .review-author {
    font-family: 'Roboto', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  .review-text {
    font-family: 'Onest', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    margin: 0 !important;
  }

  /* FAQ Section Mobile (Figma node 369:741) */
  .faq-section {
    width: 100% !important;
    margin: 40px auto 0 !important;
    padding: 40px 16px !important;
    box-sizing: border-box !important;
    background-color: transparent !important;
  }

  .gray-wrapper {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .faq-title {
    font-family: 'Onest', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 30px !important;
    color: #000000 !important;
    text-align: center !important;
    margin: 0 0 24px !important;
  }

  .faq-accordion {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .faq-item {
    background-color: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border: none !important;
    transition: background-color 0.3s ease !important;
  }

  .faq-item[open] {
    background-color: #F3FEDC !important;
  }

  .faq-question {
    font-family: 'Onest', sans-serif !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    color: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .faq-arrow {
    flex: 0 0 auto !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: #DDE96E !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease, background-color 0.3s ease !important;
  }

  .faq-arrow svg path {
    stroke: #151313 !important;
  }

  .faq-item[open] .faq-arrow {
    transform: rotate(180deg) !important;
    background-color: #151313 !important;
  }

  .faq-item[open] .faq-arrow svg path {
    stroke: #DDE96E !important;
  }

  .faq-answer {
    font-family: 'Onest', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    padding-top: 14px !important;
  }
}


