@font-face {
  font-family: 'Bitter';
  src: url('./fonts/Bitter.woff2') format('woff2'),
    url('./fonts/Bitter.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.ora-q {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0px;
  position: relative;
  background-color: #ffffff;
  overflow-x: clip;
}

.ora-q .hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.ora-q .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(180deg, #473698 0%, #171232 100%);
  position: relative;
  overflow: hidden;
}

.ora-q .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: clamp(20px, 2.6vw, 40px);
  margin-top: clamp(40px, 5.2vw, 80px);
  margin-bottom: 0px;
  z-index: 2;
  position: relative;
}

.ora-q .hero-logo {
  width: clamp(140px, 14.6vw, 226px);
  height: auto;
  object-fit: contain;
}

.ora-q .hero-image {
  position: relative;
  width: 70%;
  height: auto;
  z-index: 1;
}

@media (max-width: 767px) {
  .ora-q .hero-container {
    padding-top: 40px;
  }

  .ora-q .hero-content {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .ora-q .hero-image {
    width: 90%;
  }
}

.ora-q .intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
}

.ora-q .intro-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(60px, 8vw, 100px) 0px;
  gap: clamp(40px, 8vw, 100px);
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
}

.ora-q .intro-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: clamp(30px, 5vw, 60px);
  width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

@media (max-width: 1024px) {
  .ora-q .intro-header {
    flex-direction: column;
  }
}

.ora-q .intro-title {
  flex: 1 1 50%;
  max-width: 625px;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.3;
  color: #473698;
  margin: 0;
}

@media (max-width: 1024px) {
  .ora-q .intro-title {
    max-width: 100%;
  }
}

.ora-q .intro-description {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  color: #867db3;
  margin: 0;
}

.ora-q .intro-description .highlight {
  color: #3fc0ab;
  font-weight: 700;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.ora-q .intro-description .highlight:hover {
  text-decoration: underline;
  text-decoration-color: #3fc0ab;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.ora-q .intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 1024px) {
  .ora-q .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ora-q .intro-grid {
    grid-template-columns: 1fr;
  }
}

.ora-q .intro-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  gap: 20px;
  background-color: #eeecf4;
  border-radius: 16px;
}

.ora-q .intro-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f8f6;
  border-radius: 16px;
}

.ora-q .intro-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ora-q .intro-card-text {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.4;
  color: #473698;
  margin: 0;
}

.ora-q .page-nav-section {
  display: flex;
  flex-direction: column;
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  align-items: center;
  gap: 10px;
  padding: 0px 10px 30px;
  /* position: sticky; */
  top: 85px;

  z-index: 4;

  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .ora-q .page-nav-section {
    top: 40px;
  }
}

.ora-q .page-nav-list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  background-color: #eeecf4;
  border-radius: 100px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.ora-q .page-nav-list::-webkit-scrollbar {
  display: none;
}

.ora-q .page-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 32px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ora-q .page-nav-item.active {
  background-color: #473698;
}

.ora-q .page-nav-text {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  color: #473698;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.ora-q .page-nav-item.active .page-nav-text {
  color: #ffffff;
}

.ora-q .page-nav-section.is-floating .page-nav-list {
  box-shadow: 0 8px 30px rgba(71, 54, 152, 0.15);
  transition: box-shadow 0.3s ease;
}

.ora-q .at-a-glance-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(40px, 6vw, 100px) clamp(20px, 4vw, 60px);
  gap: clamp(30px, 4vw, 60px);
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  background: linear-gradient(180deg,
      rgba(63, 192, 171, 0.04) 50.04%,
      rgba(63, 192, 171, 0.2) 100%);
  border-radius: 20px;
  box-sizing: border-box;
}

.ora-q .at-a-glance-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 700;
  color: #473698;
  font-size: clamp(32px, 4vw, 50px);
  line-height: normal;
  margin: 0;
}

.ora-q .at-a-glance-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.ora-q .at-a-glance-row {
  display: flex;
  align-items: stretch;
  gap: clamp(30px, 5vw, 80px);
  width: 100%;
}

@media (max-width: 767px) {
  .ora-q .at-a-glance-row {
    flex-direction: column;

    gap: 0px;
  }

  .ora-q .founder-item {
    padding: 6px 0px 6px !important;
    gap: 16px;
  }

  .ora-q .founder-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .ora-q .founder-info {
    gap: 6px;
    flex: 1;
  }

  .ora-q .founder-name-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  .ora-q .founder-name-link .link-text {
    line-height: 1.2;
  }

  .ora-q .founder-name-link svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .ora-q .founder-title {
    line-height: 1.4;
  }
}

.ora-q .at-a-glance-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0px;
  flex: 1;
  width: 100%;
  border-bottom: 1px solid #867db333;
}

.ora-q .item-label {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 700;
  color: #473698;
  font-size: 20px;
  line-height: normal;
  margin: 0;
}

.ora-q .item-value {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #867cb3;
  font-size: 20px;
  line-height: normal;
  margin: 0;
}

.ora-q .item-value-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ora-q .item-value-link:hover .link-text {
  text-decoration: underline;
  text-decoration-color: rgba(63, 192, 171, 0.5);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.ora-q .item-value-link:hover .link-arrow {
  transform: translateX(4px);
}

.ora-q .item-value-link .link-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 600;
  color: #3fc0ab;
  font-size: 20px;
  line-height: normal;
}

.ora-q .link-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.ora-q .highlight-green {
  font-weight: 700;
  color: #3fc0ab;
}

.ora-q .at-a-glance-founders-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0px 0px;
  width: 100%;
}

.ora-q .founder-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 0px 24px;
  flex: 1;
  border-bottom: 1px solid #867db333;
}

.ora-q .founder-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.ora-q .founder-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.ora-q .founder-name-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.ora-q .founder-name-link:hover .link-text {
  text-decoration: underline;
  text-decoration-color: rgba(63, 192, 171, 0.5);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.ora-q .founder-name-link:hover .link-arrow {
  transform: translateX(4px);
}

.ora-q .founder-name-link .link-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 600;
  color: #3fc0ab;
  font-size: 20px;
  line-height: normal;
}

.ora-q .founder-title {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #867cb3;
  font-size: 16px;
  line-height: normal;
  margin: 0;
}

.ora-q .stats-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: clamp(40px, 6vw, 60px) 0px 0px;
  gap: 20px;
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  height: auto;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .ora-q .stats-section {
    flex-direction: column;
  }
}

.ora-q .stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 24px;
  flex: 1;
  align-self: stretch;
  border-radius: 20px;
  background: #3fc0ab;
  box-sizing: border-box;
}

.ora-q .stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ora-q .stat-value {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 60px);
  line-height: normal;
  margin: 0;
  text-align: center;
}

.ora-q .stat-label {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.ora-q .stat-subtext {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  margin: 0;
}

.ora-q .why-built-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(40px, 6vw, 100px) clamp(20px, 4vw, 120px);
  gap: clamp(30px, 4vw, 60px);
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  height: auto;
  flex: none;
  box-sizing: border-box;
}

.ora-q .section-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 700;
  color: #473698;
  font-size: clamp(32px, 4vw, 50px);
  line-height: normal;
  margin: 0;
}

.ora-q .why-built-text {
  align-self: stretch;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #867cb3;
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.5;
  margin: 0;
}

.ora-q .challenge-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: clamp(40px, 6vw, 100px) clamp(20px, 4vw, 60px);
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  height: auto;
  border-radius: 20px;
  background: linear-gradient(180deg,
      rgba(71, 54, 152, 0.04) 0%,
      rgba(71, 54, 152, 0.2) 100%);
  box-sizing: border-box;
  position: relative;
  flex: 0 0 auto;
}

.ora-q .challenge-layout {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  width: 100%;
  align-self: stretch;
  flex: 0 0 auto;
  position: relative;
}

@media (max-width: 1024px) {
  .ora-q .challenge-layout {
    flex-direction: column;
    align-items: stretch;
  }
}

.ora-q .challenge-title-container {
  display: inline-flex;
  align-items: flex-start;
  gap: 60px;
  flex: 0 0 auto;
  position: relative;
}

.ora-q .challenge-title {
  width: fit-content;
  text-align: center;
  white-space: normal;
  position: relative;
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  color: #473698;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: 0;
  line-height: normal;
}

.ora-q .challenge-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 20px;
  flex: 1;
  flex-grow: 1;
  position: relative;
}

.ora-q .challenge-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  width: 100%;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
}

.ora-q .challenge-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(63, 192, 171, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
}

.ora-q .challenge-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ora-q .challenge-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  flex-grow: 1;
  position: relative;
  min-width: 0;
}

.ora-q .challenge-card-title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  color: #473698;
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: 0;
  line-height: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.ora-q .challenge-card-desc {
  position: relative;
  align-self: stretch;
  margin: 0;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  color: #867cb3;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 0;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.ora-q .exam-timeline-section {
  background: linear-gradient(180deg, #473698 0%, #171232 100%);
  border-radius: 20px;
  width: 100%;
  max-width: 1540px;
  height: 4492px;
  margin: 0 auto;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.ora-q .timeline-container {
  width: 100%;
  max-width: 1540px;
  height: 4492px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}

.ora-q .timeline-main-title {
  font-family: 'Bitter', Helvetica, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
  position: absolute;
  width: 834px;
  height: 60px;
  left: 353px;

  top: 100px;
  text-align: center;
  margin: 0;
}

.ora-q .timeline-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ora-q .timeline-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ora-q .timeline-content,
.ora-q .timeline-visual,
.ora-q .timeline-vector {
  position: absolute;
  pointer-events: auto;
}

.ora-q .timeline-content {
  width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.ora-q .visual-wrapper {
  background: transparent;
  width: 650px;
  height: 498px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ora-q .visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  display: block;
  margin-top: 36px;
}

.ora-q .timeline-vector svg {
  width: 100%;
  height: auto;
  display: block;
}

.ora-q .step-badge {
  background: #3fc0ab;
  border-radius: 100px;
  padding: 10px 32px;
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ora-q .step-desc {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #ffffff;
  margin: 0;
  width: 650px;
}

.ora-q .step-desc strong {
  font-weight: 700;
}

.ora-q .timeline-row:nth-child(1) .timeline-content {
  left: 60px;
  top: 409px;
}

.ora-q .timeline-row:nth-child(1) .timeline-visual {
  left: 830px;
  top: 310px;
}

.ora-q .timeline-row:nth-child(1) .timeline-vector {
  left: 385px;
  top: 798px;
  width: 770px;
}

.ora-q .timeline-row:nth-child(2) .timeline-content {
  left: 830px;
  top: 1205px;
}

.ora-q .timeline-row:nth-child(2) .timeline-visual {
  left: 60px;
  top: 1106px;
}

.ora-q .timeline-row:nth-child(2) .timeline-vector {
  left: 385px;
  top: 1594px;
  width: 770px;
}

.ora-q .timeline-row:nth-child(2) .timeline-vector svg {
  transform: scaleX(-1);
}

.ora-q .timeline-row:nth-child(3) .timeline-content {
  left: 60px;
  top: 1874px;
}

.ora-q .timeline-row:nth-child(3) .timeline-visual {
  left: 830px;
  top: 1902px;
}

.ora-q .timeline-row:nth-child(3) .timeline-vector {
  left: 385px;
  top: 2390px;
  width: 770px;
}

.ora-q .timeline-row:nth-child(4) .timeline-content {
  left: 830px;
  top: 2797px;
}

.ora-q .timeline-row:nth-child(4) .timeline-visual {
  left: 60px;
  top: 2698px;
}

.ora-q .timeline-row:nth-child(4) .timeline-vector {
  left: 385px;
  top: 3186px;
  width: 770px;
}

.ora-q .timeline-row:nth-child(5) .timeline-visual {
  left: 445px;
  top: 3296px;
}

.ora-q .timeline-row:nth-child(6) .timeline-content {
  left: 60px;
  top: 3975px;
}

.ora-q .timeline-row:nth-child(6) .timeline-visual {
  left: 830px;
  top: 3894px;
}

.ora-q .timeline-row::after {
  display: none !important;
}

.ora-q .timeline-row.center-visual-only {
  justify-content: center;
}

.ora-q .timeline-row.center-visual-only .timeline-visual {
  flex: none;
  width: 100%;
}

.ora-q .timeline-row:first-child::before {
  display: none;
}

.ora-q .timeline-row:last-child::after {
  display: none;
}

.ora-q .testimonial-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(40px, 6vw, 100px) 0px;
  gap: 10px;
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
  height: auto;
  box-sizing: border-box;
  position: relative;
  flex: 0 0 auto;
}

.ora-q .testimonial-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
  background-color: #3fc0ab;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 80px);
  box-sizing: border-box;
  padding: clamp(80px, 12vw, 130px) clamp(20px, 6vw, 120px);
  overflow: hidden;
}

.ora-q .testimonial-bg-shape {
  position: absolute;
  background-color: #ffffff;
  opacity: 0.1;
  z-index: 1;
}

.ora-q .top-shape {
  top: 0;
  left: 25%;
  width: 130px;
  height: 100px;
  border-radius: 0px 0px 20px 20px;
}

.ora-q .bottom-shape {
  bottom: 0;
  right: 15%;
  width: 154px;
  height: 105px;
  border-radius: 20px 20px 0px 0px;
}

.ora-q .float-shape {
  top: 347px;
  left: 298px;
  width: 84px;
  height: 84px;
  border-radius: 14px;
}

.ora-q .testimonial-quote-icon {
  position: absolute;
  width: 59px;
  height: 50px;
  z-index: 2;
}

.ora-q .quote-top {
  top: clamp(20px, 5vw, 50px);
  left: clamp(20px, 5vw, 50px);
}

.ora-q .quote-bottom {
  bottom: clamp(170px, 15vw, 175px);
  right: clamp(20px, 5vw, 50px);
}


.ora-q .testimonial-text {
  position: relative;
  font-family: 'Bitter', Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(22px, 3.5vw, 42px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  max-width: 1300px;
  z-index: 3;
}

.ora-q .testimonial-text a {
  color: #473698 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  transition: opacity 0.2s ease;
}

.ora-q .testimonial-text a:hover {
  opacity: 0.8;
}

.ora-q .testimonial-author {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  background-color: #ffffff;
  border-radius: 100px;
  z-index: 3;
}

.ora-q .testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.ora-q .testimonial-author-details {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.ora-q .testimonial-author-name {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: 'Bitter', Helvetica;
  font-weight: 700;
  color: #473698;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.ora-q .testimonial-author-title {
  position: relative;
  width: fit-content;
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  color: #867cb3;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .ora-q .testimonial-card {
    padding: 50px 20px 50px 20px;
    gap: 60px;
    min-height: auto;
  }

  .ora-q .testimonial-text {
    font-size: 18px;
  }

  .ora-q .testimonial-quote-icon {
    width: 30px;
    height: 25px;
  }

  .ora-q .quote-top {
    top: 20px;
    left: 20px;
  }

  .ora-q .quote-bottom {
    bottom: 140px;
    right: 20px;
  }

  .ora-q .testimonial-author {
    padding: 6px 16px 6px 6px;
    max-width: 100%;
  }

  .ora-q .testimonial-author-img {
    width: 44px;
    height: 44px;
  }

  .ora-q .testimonial-author-details {
    flex: 1;
    min-width: 0;
  }

  .ora-q .testimonial-author-name {
    font-size: 16px;
    white-space: normal;
    word-break: break-word;
  }

  .ora-q .testimonial-author-title {
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }
}

.ora-q .engineering-decisions-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px clamp(20px, 4vw, 20px) 0;
  box-sizing: border-box;
}

.ora-q .engineering-decisions-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 30px 30px;
  gap: 60px;
  width: 100%;
  max-width: 1540px;
  background: linear-gradient(180deg,
      rgba(63, 192, 171, 0.04) 0%,
      rgba(63, 192, 171, 0.2) 100%);
  border-radius: 20px;
  box-sizing: border-box;
}

.ora-q .engineering-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  color: #473698;
  margin: 0;
  max-width: 1300px;
}

.ora-q .engineering-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ora-q .engineering-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.ora-q .engineering-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  border-radius: 20px;
  flex: 1;
  box-sizing: border-box;
}

.ora-q .dark-card {
  background: #473698;
}

.ora-q .light-card {
  background: #3fc0ab;
}

.ora-q .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
}

.ora-q .light-icon {
  background: #eeecf4;
}

.ora-q .light-icon-alt {
  background: #f0f8f6;
}

.ora-q .engineering-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ora-q .engineering-desc {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 1024px) {
  .ora-q .engineering-decisions-section {
    padding: 80px 20px 20px;
    gap: 40px;
  }

  .ora-q .engineering-title {
    font-size: 36px;
  }

  .ora-q .engineering-desc {
    font-size: 20px;
    line-height: 30px;
  }

  .ora-q .engineering-row {
    flex-wrap: wrap;
  }

  .ora-q .row-3-cols .engineering-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .ora-q .engineering-decisions-section {
    padding: 60px 20px 20px;
  }

  .ora-q .engineering-title {
    font-size: 28px;
  }

  .ora-q .engineering-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .ora-q .engineering-row {
    flex-direction: column;
  }

  .ora-q .row-3-cols .engineering-card,
  .ora-q .row-2-cols .engineering-card {
    width: 100%;
    min-width: 100%;
  }
}

.ora-q .regulatory-trust-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px clamp(20px, 4vw, 60px) 0;
  box-sizing: border-box;
}

.ora-q .regulatory-trust-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1540px;
  background: transparent;
  box-sizing: border-box;
}

.ora-q .regulatory-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #473698;
  margin: 0;
  width: 100%;
  max-width: 1300px;
}

.ora-q .regulatory-desc {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #867db3;
  margin: 0;
  width: 100%;
  max-width: 1300px;
}

@media (max-width: 1024px) {
  .ora-q .regulatory-trust-section {
    padding: 80px 40px;
    gap: 40px;
  }

  .ora-q .regulatory-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .ora-q .regulatory-desc {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .ora-q .regulatory-trust-section {
    padding: 60px 20px;
    gap: 30px;
  }

  .ora-q .regulatory-title {
    font-size: 28px;
  }

  .ora-q .regulatory-desc {
    font-size: 16px;
    line-height: 26px;
  }
}

.ora-q .dashboard-preview-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px clamp(20px, 4vw, 20px) 0;
  box-sizing: border-box;
}

.ora-q .dashboard-preview-image {
  width: 100%;
  max-width: 1540px;
  height: auto;
  border-radius: 20px;
  display: block;
}

.ora-q .results-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 20px) 0;
  box-sizing: border-box;
}

.ora-q .results-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 60px;
  gap: 60px;
  width: 100%;
  max-width: 1540px;
  background: linear-gradient(180deg,
      rgba(63, 192, 171, 0) 50.04%,
      rgba(63, 192, 171, 0.2) 100%);
  border-radius: 20px;
  box-sizing: border-box;
}

.ora-q .results-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  color: #473698;
  margin: 0;
  width: 100%;
}

.ora-q .results-table {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.ora-q .results-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.ora-q .results-col-metric-title {
  width: 50%;
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  color: #473698;
}

.ora-q .results-col-meaning-title {
  width: 50%;
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  color: #473698;
}

.ora-q .results-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.ora-q .results-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ora-q .results-col-metric {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-right: 40px;
  box-sizing: border-box;
}

.ora-q .results-metric-value {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 72px;
  color: #3fc0ab;
}

.ora-q .results-metric-desc {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #473698;
}

.ora-q .results-col-meaning {
  width: 50%;
  display: flex;
  align-items: center;
}

.ora-q .results-meaning-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #473698;
  margin: 0;
  max-width: 550px;
}

.ora-q .results-divider {
  width: 100%;
  height: 0;
  border: 1px solid #7e7e96;
  opacity: 0.3;
  margin: 0;
}

@media (max-width: 1024px) {
  .ora-q .results-section {
    padding: 60px 30px;
    gap: 40px;
  }

  .ora-q .results-col-metric {
    padding-right: 20px;
  }

  .ora-q .results-title {
    font-size: 36px;
    line-height: 46px;
  }

  .ora-q .results-col-metric-title,
  .ora-q .results-col-meaning-title {
    font-size: 24px;
    line-height: 30px;
  }

  .ora-q .results-metric-value {
    font-size: 48px;
    line-height: 56px;
  }

  .ora-q .results-metric-desc,
  .ora-q .results-meaning-text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .ora-q .results-section {
    padding: 40px 20px;
    gap: 30px;
  }

  .ora-q .results-title {
    font-size: 28px;
    line-height: 38px;
  }

  .ora-q .results-header {
    display: none;
  }

  .ora-q .results-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ora-q .results-col-metric,
  .ora-q .results-col-meaning {
    width: 100%;
    padding-right: 0;
  }

  .ora-q .results-metric-value {
    font-size: 40px;
    line-height: 48px;
  }

  .ora-q .results-metric-desc,
  .ora-q .results-meaning-text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ---- Recognized Section ---- */
.ora-q .recognized-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 20px);
  box-sizing: border-box;
  background: #f9f8ff;
}

.ora-q .recognized-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  gap: 28px;
  width: 100%;
  max-width: 1040px;
  box-sizing: border-box;
  text-align: center;
}

.ora-q .recognized-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.2;
  color: #473698;
  margin: 0;
}

.ora-q .recognized-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #525252;
  margin: 0;
  max-width: 900px;
}

.ora-q .recognized-desc a {
  color: #473698 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  transition: color 0.2s ease;
}

.ora-q .recognized-desc a:hover {
  color: #6247c9 !important;
  text-decoration: underline !important;
}

/* ---- Whats Next ---- */
.ora-q .whats-next-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 20px);
  box-sizing: border-box;
}

.ora-q .whats-next-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  gap: 60px;
  width: 100%;
  max-width: 1540px;
  box-sizing: border-box;
}

.ora-q .whats-next-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #473698;
  margin: 0;
  width: 100%;
  max-width: 1300px;
}

.ora-q .whats-next-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

.ora-q .whats-next-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  gap: 100px;
  background-color: #473698;
  border-radius: 20px;
  flex: 1;

  box-sizing: border-box;
}

.ora-q .whats-next-number {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 100;
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
}

.ora-q .whats-next-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 1024px) {
  .ora-q .whats-next-section {
    padding: 80px 0;
    gap: 50px;
  }

  .ora-q .whats-next-title {
    font-size: 40px;
    line-height: 50px;
  }

  .ora-q .whats-next-grid {
    flex-direction: column;
    gap: 30px;
  }

  .ora-q .whats-next-card {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .ora-q .whats-next-number {
    font-size: 60px;
    line-height: 60px;
  }

  .ora-q .whats-next-text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .ora-q .whats-next-section {
    padding: 60px 0;
    gap: 40px;
  }

  .ora-q .whats-next-title {
    font-size: 32px;
    line-height: 42px;
  }

  .ora-q .whats-next-grid {
    gap: 20px;
  }

  .ora-q .whats-next-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
  }

  .ora-q .whats-next-number {
    font-size: 48px;
    line-height: 58px;
  }

  .ora-q .whats-next-text {
    font-size: 18px;
    line-height: 28px;
  }
}

.ora-q .oraq-faq-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 20px 150px;
  box-sizing: border-box;
}

.ora-q .oraq-faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 120px;
  gap: 60px;
  width: 100%;
  max-width: 1540px;
  background-color: #eeecf4;
  border-radius: 20px;
  box-sizing: border-box;
}

.ora-q .oraq-faq-title {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #473698;
  margin: 0;
  width: 100%;
  max-width: 1300px;
}

.ora-q .oraq-faq-accordion {
  width: 100%;
  max-width: 1300px;
}

.ora-q .oraq-faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.ora-q .oraq-faq-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 40px 0;
  gap: 16px;
  width: 100%;
  border-bottom: 1px solid rgba(134, 125, 179, 0.2);
  cursor: pointer;
}

.ora-q .oraq-faq-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-grow: 1;
  max-width: 1228px;
}

.ora-q .oraq-faq-question {
  font-family: 'Bitter', Helvetica, serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #473698;
  margin: 0;
  padding: 0;
}

.ora-q .oraq-faq-answer {
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #867db3;
}

.ora-q .oraq-faq-arrow-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  width: 56px;
  height: 24px;
  flex: none;
  box-sizing: border-box;
  margin-top: 6px;
}

.ora-q .oraq-faq-answer a {
  color: #473698 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  transition: color 0.2s ease;
}

.ora-q .oraq-faq-arrow-wrapper svg {
  transition: transform 0.3s ease-in-out;
}

.ora-q .oraq-faq-item[aria-expanded='false'] .oraq-faq-arrow-wrapper svg {
  transform: rotate(180deg);
}

.ora-q .oraq-faq-item[aria-expanded='true'] .oraq-faq-arrow-wrapper svg {
  transform: rotate(0deg);
}

@media (max-width: 1024px) {
  .ora-q .oraq-faq-wrapper {
    padding-bottom: 100px;
  }

  .ora-q .oraq-faq-section {
    padding: 80px 40px;
    gap: 40px;
  }

  .ora-q .oraq-faq-title {
    font-size: 40px;
    line-height: 50px;
  }

  .ora-q .oraq-faq-item {
    padding: 30px 0;
  }

  .ora-q .oraq-faq-text-wrapper {
    gap: 12px;
  }

  .ora-q .oraq-faq-question {
    font-size: 24px;
    line-height: 32px;
  }

  .ora-q .oraq-faq-answer {
    font-size: 18px;
    line-height: 28px;
  }

  .ora-q .oraq-faq-arrow-wrapper {
    margin-top: 4px;
  }
}

@media (max-width: 767px) {
  .ora-q .oraq-faq-wrapper {
    padding-bottom: 60px;
  }

  .ora-q .oraq-faq-section {
    padding: 40px 20px;
    gap: 30px;
  }

  .ora-q .oraq-faq-title {
    font-size: 32px;
    line-height: 42px;
  }

  .ora-q .oraq-faq-item {
    padding: 24px 0;
    gap: 12px;
  }

  .ora-q .oraq-faq-text-wrapper {
    gap: 8px;
  }

  .ora-q .oraq-faq-question {
    font-size: 20px;
    line-height: 28px;
  }

  .ora-q .oraq-faq-answer {
    font-size: 16px;
    line-height: 26px;
  }

  .ora-q .oraq-faq-arrow-wrapper {
    width: 32px;
    padding: 0 8px;
    margin-top: 2px;
  }
}

.ora-q .oraq-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  width: 100%;
}

.ora-q .oraq-cta-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 1540px;
  height: 572px;
}

.ora-q .oraq-cta-background {
  position: absolute;
  height: 532px;
  left: 0;
  right: 0;
  top: 40px;
  background: linear-gradient(90deg, #473698 0%, #171232 100%);
  border-radius: 20px;
}

.ora-q .oraq-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 60px;
  position: absolute;
  width: 569px;
  height: 296px;
  left: 60px;
  top: 158px;
  z-index: 2;
}

.ora-q .oraq-cta-title {
  font-family: 'Bitter', Helvetica, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.ora-q .oraq-cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 10px;
  width: 288px;
  height: 56px;
  background: #3fc0ab;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.ora-q .oraq-cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 4px 12px rgba(63, 192, 171, 0.3);
}

.ora-q .oraq-cta-button-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  white-space: nowrap;
}

.ora-q .oraq-cta-image {
  position: absolute;
  width: 851px;
  height: 572px;
  left: 629px;
  top: 0px;
  z-index: 2;
  object-fit: cover;

  /* Removing scale to prevent horizontal scroll */
  transform: scale(1.15) translate(-40px, -37px);
}

@media (max-width: 1540px) {
  .ora-q .exam-timeline-section {
    width: calc(100% - (clamp(20px, 4vw, 20px) * 2));

    max-width: 1540px;
    height: auto;
    padding: 80px clamp(20px, 4vw, 60px);
    margin: 0 auto;
    border-radius: 20px;

    box-sizing: border-box;
  }

  .ora-q .timeline-container,
  .ora-q .timeline-list {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
  }

  .ora-q .timeline-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .ora-q .timeline-row,
  .ora-q .timeline-row:nth-child(n),
  .ora-q .timeline-content,
  .ora-q .timeline-visual,
  .ora-q .timeline-row:nth-child(n) .timeline-content,
  .ora-q .timeline-row:nth-child(n) .timeline-visual {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .ora-q .timeline-vector,
  .ora-q .timeline-row:nth-child(n) .timeline-vector {
    display: none !important;
  }

  .ora-q .timeline-row:nth-child(5) {
    display: none !important;
  }

  .ora-q .timeline-main-title {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 60px;
    text-align: center;
  }

  .ora-q .step-desc {
    width: 100%;
    font-size: 20px;
    line-height: 32px;
  }

  .ora-q .step-badge {
    align-self: flex-start;
  }

  .ora-q .timeline-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;

    justify-content: space-between;
    gap: 40px !important;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .ora-q .timeline-row:nth-child(even) {
    flex-direction: row-reverse !important;
  }

  .ora-q .timeline-row:nth-child(6) {
    flex-direction: row !important;
  }

  .ora-q .timeline-content,
  .ora-q .timeline-visual,
  .ora-q .timeline-row:nth-child(n) .timeline-content,
  .ora-q .timeline-row:nth-child(n) .timeline-visual {
    width: calc(50% - 20px) !important;

    flex: none !important;
  }

  .ora-q .timeline-content {
    align-items: flex-start;
    text-align: left;
  }

  .ora-q .visual-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 650/498;
    margin: 0 auto;
  }

  .ora-q .visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 991px) {
  .ora-q .exam-timeline-section {
    padding: 60px clamp(20px, 4vw, 60px);
  }

  .ora-q .timeline-row,
  .ora-q .timeline-row:nth-child(even),
  .ora-q .timeline-row:nth-child(6) {
    flex-direction: column !important;

    padding: 30px 0;
    gap: 60px !important;

    background: transparent !important;

    border: none !important;
  }

  .ora-q .timeline-content,
  .ora-q .timeline-visual,
  .ora-q .timeline-row:nth-child(n) .timeline-content,
  .ora-q .timeline-row:nth-child(n) .timeline-visual {
    width: 100% !important;

    align-items: center !important;
    text-align: center !important;
  }

  .ora-q .step-badge {
    align-self: center !important;
  }

  .ora-q .timeline-main-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 40px;
  }

  .ora-q .step-desc {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 1585px) {
  .ora-q .oraq-cta-wrapper {
    padding: 0px 20px;
    display: flex;
    justify-content: center;
  }

  .ora-q .oraq-cta-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;

    justify-content: space-between;
    padding: 60px 0 0 40px;
  }

  .ora-q .oraq-cta-background {
    top: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
  }

  .ora-q .oraq-cta-content {
    position: relative;
    top: auto;
    left: auto;
    width: 50%;
    max-width: 100%;
    padding: 0 0 60px 0;

    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .ora-q .oraq-cta-title {
    width: 100%;
    height: auto;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.2;
    text-align: left;
  }

  .ora-q .oraq-cta-button {
    margin: 0;
  }

  .ora-q .oraq-cta-image {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 55%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 851/572;
    margin-top: -150px;
    margin-bottom: 0px;

    /* margin-right: -40px; */
    align-self: flex-end;

    transform: none;
    object-fit: contain;
    object-position: right bottom;
  }
}

@media (max-width: 1023px) {
  .ora-q .oraq-cta-container {
    flex-direction: column;
    padding: 60px 40px 0;

    align-items: center;
  }

  .ora-q .oraq-cta-background {
    top: 0;
    bottom: 0;
  }

  .ora-q .oraq-cta-content {
    width: 100%;
    align-items: flex-start;

    text-align: left;
    padding-bottom: 40px;
  }

  .ora-q .oraq-cta-title {
    text-align: left;
    font-size: 36px;
  }

  .ora-q .oraq-cta-image {
    width: 100%;
    max-width: 650px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0px;

    transform: none;
    align-self: center;
    object-position: center bottom;
  }
}

@media (max-width: 767px) {
  .ora-q .oraq-cta-wrapper {
    padding: 40px 20px;
    overflow: visible;
  }

  .ora-q .oraq-cta-container {
    padding: 40px 20px 0;
    align-items: flex-start;
  }

  .ora-q .oraq-cta-background {
    bottom: 0;
    border-radius: 16px;
  }

  .ora-q .oraq-cta-content {
    align-items: flex-start;
    text-align: left;
    gap: 30px;
    padding-bottom: 40px;
  }

  .ora-q .oraq-cta-title {
    font-size: 28px;
    text-align: left;
  }

  .ora-q .oraq-cta-image {
    width: 100%;
    max-width: 100%;
    align-self: center;
    margin-right: 0;
    margin-bottom: 0px;

    transform: none;

    object-position: center bottom;
  }
}

@media (max-width: 355px) {
  .ora-q .oraq-cta-button {
    width: 100%;
    max-width: 100%;
    padding: 16px 12px;
    box-sizing: border-box;
  }

  .ora-q .oraq-cta-button-text {
    font-size: 18px;
    text-align: center;
  }
}