/* Base styles */
:root {
	--primary-brand: #007aff;
	--alternative-brand: #3395FF;
	--text-paragraph: #3a4f66;
	--text-heading: #111518;
	--border-grey: #e1e8ed;
	--background-subtle: #f2f5f7;
	--background-site: #fafbfc;
	--background-white: #fff;
	--background-gradient: linear-gradient(
		180deg,
		rgba(161, 196, 253, 0.5) 0%,
		rgba(194, 233, 251, 0.5) 100%
	  );
	--accent-yellow: #f3cd51;
	--font-size-h1: 48px;
	--font-size-h2: 32px;
	--font-size-h3: 28px;
	--font-size-h4: 22px;
	--font-size-h5: 18px;
	--paragraph-large: 18px;
	--paragraph-normal: 16px;
	--paragraph-medium: 15px;
	--paragraph-small: 10px;
	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-5: 40px;
	--space-6: 48px;
	--space-7: 56px;
	--space-8: 64px;
	--space-9: 80px;
	--space-10: 120px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family:
	  "Noto Sans TC",
	  "Noto Sans JP",
	  -apple-system,
	  Roboto,
	  Helvetica,
	  sans-serif;
	background-color: var(--background-site);
	color: var(--text-paragraph);
	line-height: 1.6;
	overflow-x: hidden;
  }
  
  img {
	max-width: 100%;
	height: auto;
  }
  
  a {
	text-decoration: none;
	color: inherit;
  }
  
  ul {
	list-style: none;
  }
  
  .landing-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	overflow: hidden;
  }
  
  /* Top banner */
  .top-banner {
	width: 100%;
	aspect-ratio: 14.93;
	object-fit: contain;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
  }

  /* Section overall layout */
  section {
	position: relative;
  }

  section .section-container {
	width: 100%;
	max-width: 996px;
	margin: auto;
  }
  
  /* Section titles */
  .section-title {
	color: var(--text-heading);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 48px;
  }
  
  /* Section divider */
  .section-divider {
	aspect-ratio: 4.33;
	width: 104px;
	margin: 72px 0;
  }
  
  .section-divider-thin {
	border: none;
	border-top: 1px dashed var(--border-grey);
	width: 100%;
  }

  .section-image {
	position: absolute;
  }
  
  /* Hero section */
  .hero-section {
	width: 100%;
	min-height: 560px;
	padding: 127px 70px;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .hero-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .hero-content {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin-bottom: -21px;
  }
  
  .hero-columns {
	display: flex;
	gap: 20px;
  }
  
  .hero-left-column {
	display: flex;
	flex-direction: column;
	width: 45%;
	justify-content: center;
  }
  
  .hero-text-container {
	display: flex;
	flex-direction: column;
	width: 100%;
  }
  
  .feature-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--primary-brand);
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.8;
  }
  
  .feature-tag {
	background-color: #edf0ff;
	border-radius: 80px;
	padding: 8px 16px;
	white-space: nowrap;
  }
  
  .hero-titles {
	margin-top: 16px;
	width: 100%;
  }
  
  .main-title {
	color: var(--text-heading);
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
  }

  .disclaimer {
	font-size: var(--paragraph-small);
	color: var(--text-paragraph);
  }
  
  .download-count {
	color: var(--text-paragraph);
	font-size: 24px;
	font-weight: 400;
	line-height: 38px;
	margin-top: 8px;
  }
  
  .highlight-number {
	font-weight: 700;
	font-size: 40px;
	color: var(--primary-brand);
  }
  
  .highlight-number-large {
	font-size: 48px;
	line-height: 70px;
	color: var(--primary-brand);
  }
  
  .download-button,
  .installation-button {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	padding: 12px 16px;
	gap: 10px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.8;
	white-space: nowrap;
	margin-top: 36px;
	align-self: flex-start;
  }
  
  .yellow-button {
	background-color: var(--accent-yellow);
	box-shadow: 0px 4px 0px 0px #cba82e;
	color: var(--text-heading);
  }
  
  .blue-button {
	background-color: var(--primary-brand);
	box-shadow: 0px 4px 0px 0px #005bc1;
	color: #fff;
  }

  .download-button.blue-button,
  .installation-button.blue-button {
	width: 187px;
	margin: 48px auto 0;
  }
  
  .centered-button {
	align-self: center;
	margin-top: 48px;
  }
  
  .download-icon {
	width: 18px;
	aspect-ratio: 1;
	object-fit: contain;
  }
  
  .hero-right-column {
	width: 55%;
	position: relative;
  }

  .hero-image-people,
  .hero-image-man {
	position: absolute;
}
  
  .hero-image {
	width: 100%;
	aspect-ratio: 2;
	object-fit: contain;
  }

	.hero-image-people {
		left: -36px;
		bottom: -57px;
	}

	.hero-image-man {
		right: 0;
		bottom: -29px;
	}
  /* Section Dividers */
  .about-section,
  .reasons-section,
  .platforms-section,
  .testimonials-section,
  .installation-section {
	position: relative;
  }

  .about-section::before,
  .reasons-section::before,
  .platforms-section::before,
  .testimonials-section::before,
  .installation-section::before {
	content: "";
	position: absolute;
    top: -1px;
    width: 104px;
    height: 24px;
	left: calc( 50% - 52px );
  }

  .about-section::before,
  .reasons-section::before {
	background: url(./img/bg-decoration-white.svg) no-repeat;
  }

  .platforms-section::before,
  .testimonials-section::before,
  .installation-section::before {
	background: url(./img/bg-decoration.svg) no-repeat;
  }
  

  /* Features section */
  .about-section {
	width: 100%;
	max-width: 1200px;
	padding: 96px 20px;
  }
  
  .features-container {
	width: 100%;
  }
  
  .features-columns {
	display: flex;
	gap: 20px;
  }
  
  .feature-column {
	width: 33.33%;
  }
  
  .feature-image {
	width: 100%;
	aspect-ratio: 1.33;
	object-fit: contain;
  }
  
  .feature-divider {
	border: none;
	border-top: 1px dashed var(--border-grey);
	margin: 24px 0;
  }
  
  .feature-header {
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .feature-number {
	color: var(--primary-brand);
	font-family: "Noto Sans JP", serif;
	font-size: 24px;
	font-weight: 400;
  }
  
  .feature-title {
	color: var(--text-heading);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
  }
  
  .feature-description {
	color: var(--text-paragraph);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin-top: 8px;
  }
  
  /* Pain points section */
  .pain-points-section {
	background: #fff;
	width: 100%;
    min-height: 427px;
    padding: 96px 80px;
    display: flex;
    justify-content: end;
    align-items: center;
  }

  .pain-points-section::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(./img/bg-pain-point.svg) no-repeat;
	background-size: 504px;
    background-position: bottom left;
  }

  .pain-point-image-man {
	left: 22.5%;
  }
  
  .section-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .pain-points-content {
	position: relative;
	width: 58%;
	max-width: 588px;
  }
  
  .pain-points-title {
	color: var(--text-heading);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 1px;
  }
  
  .pain-points-list {
	margin-top: 32px;
	max-width: 100%;
	font-size: 18px;
	color: var(--text-paragraph);
	font-weight: 500;
	line-height: 1.6;
  }
  
  .pain-point {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
  }
  
  .pain-point:last-child {
	margin-bottom: 0;
  }
  
  .pain-point-icon {
	width: 24px;
	aspect-ratio: 1;
	object-fit: contain;
  }
  
  /* Reasons section */
  .reasons-section {
	width: 100%;
	max-width: 792px;
	padding: 96px 20px;
  }
  
  .reason-container {
	width: 100%;
  }
  
  .reason-columns {
	display: flex;
	gap: 20px;
	align-items: center;
  }
  
  .reason-image-column {
	width: 50%;
  }
  
  .reason-image {
	width: 100%;
	aspect-ratio: 1.91;
	object-fit: contain;
	border-radius: 0;
  }
  
  .reason-content-column {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  .reason-content {
	max-width: 360px;
  }
  
  .reason-number {
	color: var(--primary-brand);
	font-family: "Noto Sans JP", serif;
	font-size: 48px;
	font-weight: 700;
  }
  
  .reason-title {
	color: var(--text-heading);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 29px;
  }
  
  .reason-description {
	color: var(--text-paragraph);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin-top: 16px;
  }
  
  .reason-divider {
	border: none;
	border-top: 1px dashed var(--border-grey);
	margin: 39px 0;
	width: 100%;
  }
  
  /* Platforms section */
  .platforms-section {
	background: var(--background-gradient);
	width: 100%;
	padding: 96px 80px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
  }
  
  .platforms-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
  }

  .platforms-icon {
	margin-bottom: 32px;
  }
  
  .platforms-background {
	aspect-ratio: 4.33;
	width: 104px;
	fill: var(--background-site);
	margin-bottom: 192px;
  }
  
  .platforms-title {
	color: var(--text-heading);
	text-align: center;
	font-size: 20px;
	line-height: 1.6;
	width: 100%;
  }
  
  .platforms-row {
	display: flex;
	margin-top: 32px;
	width: 344px;
	max-width: 100%;
	gap: 24px;
  }
  
  .platforms-row:first-of-type {
	margin-top: 32px;
  }
  
  .platforms-row:not(:first-of-type) {
	margin-top: 16px;
  }
  
  .platform-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-brand);
	border-radius: 4px;
	box-shadow: 0px 4px 0px 0px #005bc1;
	padding: 12px 16px;
	gap: 10px;
	flex: 1;
	color: #fff;
  }
  
  .platform-icon {
	width: 18px;
	aspect-ratio: 1;
	object-fit: contain;
  }
  
  /* Awards section */
  .awards-section {
	width: 100%;
	padding: 96px 20px;
  }
  
  .awards-container {
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 48px;
  }

  .awards-image-man {
    top: -90px;
    left: 8.5%;
  }
  
  .award-logo {
	width: 120px;
	aspect-ratio: 1;
	object-fit: contain;
  }
  
  .ratings-container {
	display: flex;
	margin-top: 48px;
	width: 347px;
	max-width: 100%;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
  }
  
  .app-store-logo {
	width: 56px;
	aspect-ratio: 0.47;
	object-fit: contain;
  }
  
  .ratings-content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
  }
  
  .ratings-title {
	color: var(--text-heading);
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
  }
  
  .ratings-details {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 12px;
	max-width: 173px;
	width: 100%;
  }
  
  .ratings-count {
	color: var(--primary-brand);
	font-family: "Noto Sans JP", serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
  }
  
  .star-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 24px;
  }
  
  .star-icon {
	width: 24px;
	aspect-ratio: 1;
	object-fit: contain;
  }
  
  /* Testimonials section */
  .testimonials-section {
	background: var(--background-white);
	width: 100%;
	min-height: 1659px;
	padding: 96px 80px;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .testimonials-content {
	position: relative;
	width: 100%;
	max-width: 996px;
  }
  
  .testimonials-container {
	margin-top: 48px;
	width: 100%;
  }
  
  .testimonial-card {
	display: flex;
	align-items: center;
	background-color: #fff;
	border: 1px solid var(--border-grey);
	border-radius: 8px;
	padding: 24px;
	gap: 32px;
	margin-bottom: 32px;
	flex-wrap: wrap;
  }
  
  .testimonial-image {
	width: 307px;
	aspect-ratio: 1.91;
	object-fit: contain;
	border-radius: 0;
	flex-grow: 1;
	flex-shrink: 1;
	min-width: 240px;
  }
  
  .testimonial-text {
	flex-grow: 1;
	flex-shrink: 1;
	min-width: 240px;
	width: 455px;
  }
  
  .testimonial-company {
	color: var(--primary-brand);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
  }
  
  .testimonial-description {
	color: var(--text-paragraph);
	font-family: "Noto Sans TC", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	margin-top: 8px;
  }
  
  /* Comparison section */
  .comparison-section {
	width: 100%;
	padding: 96px 20px;
  }

  .comparison-image-people {
	top: -94px;
	right: 8.5%;
  }
  
  .comparison-table {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	border-collapse: collapse;
	font-family: "Noto Sans TC", sans-serif;
  }
  
  .comparison-header-row {
	width: 100%;
	font-size: 18px;
	color: var(--text-heading);
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	flex-wrap: wrap;
  }
  
  .comparison-header-cell {
	border: 1px solid #edf0ff;
	padding: 18px 10px;
	min-height: var(--space-8);
	align-items: center;
	justify-content: center;
  }
  
  .feature-cell {
	background-color: var(--background-subtle);
  }
  
  .kdan-cell {
	background-color: #edf0ff;
	color: var(--primary-brand);
	line-height: 1.2;
  }
  
  .comparison-row {
	width: 100%;
	font-size: 15px;
	color: var(--text-paragraph);
	font-weight: 400;
	line-height: 1.4;
	flex-wrap: wrap;
  }
  
  .comparison-cell {
	border: 1px solid #edf0ff;
	padding: 22px 10px;
	min-height: var(--space-8);
	align-items: center;
	justify-content: center;
	text-align: center;
  }
  
  .blue-cell {
	background-color: var(--primary-brand);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
  }
  
  .gray-cell {
	background-color: var(--background-subtle);
  }
  
  .white-cell {
	background-color: #fff;
  }
  
  /* Installation section */
  .installation-section {
	background: var(--background-gradient);
	width: 100%;
	min-height: 475px;
	padding: 96px 80px;
  }
  
  .installation-content {
	position: relative;
	width: 882px;
	max-width: 100%;
	margin: auto;
  }
  
  .steps-container {
	display: flex;
	margin-top: 48px;
	align-items: center;
	gap: var(--space-7);
	white-space: nowrap;
	flex-wrap: wrap;
	justify-content: center;
  }
  
  .step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 123px;
	align-self: flex-start;
  }
  
  .step-image {
	width: 123px;
	aspect-ratio: 1.02;
	object-fit: contain;
  }
  
  .step-text {
	margin-top: 16px;
	width: 112px;
	max-width: 100%;
	text-align: center;
  }
  
  .step-number {
	color: var(--primary-brand);
	font-family: "Noto Sans JP", serif;
	font-size: 14px;
	font-weight: 400;
  }
  
  .step-description {
	color: var(--text-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 29px;
	margin-top: 4px;
	text-wrap: auto;
  }
  
  .step-arrow {
	width: 18px;
	aspect-ratio: 1;
	object-fit: contain;
  }
  
  /* FAQ section */
  .faq-section {
	width: 100%;
	padding: 96px 20px;
  }

  .faq-image-woman {
	left: 8.5%;
	top: -90px;
  }
  
  .faq-item {
	border: 1px solid var(--border-grey);
	border-radius: 8px;
	margin-bottom: 32px;
  }

  .faq-item:last-child {
	margin-bottom: 0;
  }
  
  .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	cursor: pointer;
	gap: 100px;
	flex-wrap: wrap;
	position: relative;
  }
  
  .question-container {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	max-width: 100%;
  }

  .question-container::after {
	content: url(./img/arrow.svg);
	transition: transform 0.3s ease;
	transform: rotate(180deg);
	position: absolute;
	right: 16px;
  }

  .faq-item[open] .question-container::after {
	transform: rotate(0deg);
  }
  
  .question-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: var(--primary-brand);
	color: #fff;
	border-radius: 32px;
	font-family: "Noto Sans JP", serif;
	font-size: 16px;
	font-weight: 400;
  }
  
  .question-text {
	color: var(--text-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
  }
  
  .faq-answer {
	padding: 20px;
	color: var(--text-paragraph);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
  }

  .faq-answer ul {
	list-style: disc;
	margin-left: 20px;
  }
  
  .answer-section {
	margin-bottom: 24px;
  }
  
  .answer-section:last-child {
	margin-bottom: 0;
  }
  
  .highlight-text {
	font-weight: 700;
	color: var(--primary-brand);
  }
  
  .link-text {
	color: var(--primary-brand);
	text-decoration: underline;
  }
  
  /* Contact form */
  .contact-section {
	width: 100%;
	padding: 96px 20px 120px;
  }

  .contact-image-man {
	top: -144px;
	right: 8.5%;
  }

  .contact-form {
	width: 100%;
  }
  
  .form-row {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
	flex-wrap: wrap;
  }
  
  .form-group {
	flex: 1;
	min-width: 240px;
  }
  
  .form-label {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: var(--text-heading);
	margin-bottom: 8px;
  }
  
  .required-mark {
	color: var(--primary-brand);
  }
  
  .form-input,
  .form-select {
	width: 100%;
	padding: 8px 16px;
	background-color: var(--background-site);
	border: 1px solid var(--border-grey);
	border-radius: 4px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	color: var(--text-paragraph);
  }
  
  .form-input::placeholder {
	color: #ddd;
  }
  
  .select-container {
	position: relative;
	width: 100%;
  }
  
  .form-select {
	appearance: none;
	background-color: transparent;
	padding-right: 30px;
  }
  
  .select-arrow {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	pointer-events: none;
  }
  
  .os-options {
	align-self: flex-end;
	border: 1px solid var(--border-grey);
	border-top: none;
	border-radius: 0 0 4px 4px;
	padding: 8px 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	color: var(--text-paragraph);
	z-index: 10;
  }
  
  .submit-button {
	background-color: var(--primary-brand);
	color: #fff;
	border: none;
	border-radius: 4px;
	box-shadow: 0px 4px 0px 0px #005bc1;
	padding: 15px 16px;
	font-family: "Noto Sans TC", sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.8;
	cursor: pointer;
	margin-top: 32px;
	width: 160px;
	display: block;
	margin-left: auto;
	margin-right: auto;
  }
  
  /* Contact banner */
  .contact-banner {
	position: relative;
	width: 100%;
	min-height: 624px;
	margin-top: 120px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
  }
  
  .contact-cta {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-yellow);
	border-radius: 8px 0 0 0;
	padding: 12px 16px;
	gap: 10px;
	right: 0;
	bottom: 0;
  }
  
  .contact-cta-title {
	color: var(--text-heading);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 18px;
  }
  
  .contact-arrow {
	width: 12px;
	aspect-ratio: 1;
	object-fit: contain;
  }

  /* Footer */
  footer {
	position: relative;
    padding: 40px 16px;
	width: 100%;
    color: rgb(255, 255, 255);
    background-color: rgb(32, 32, 32);
  }

  #copyRight {
	display: block;
    width: 100%;
    font-size: 12px;
    color: rgb(157, 158, 158);
    text-align: center;
    line-height: 1.5;
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
	.hero-section {
	  padding: 100px 20px;
	}
  
	.hero-content {
	  max-width: 100%;
	  margin-bottom: 10px;
	}
  
	.hero-columns {
	  flex-direction: column;
	  align-items: stretch;
	  gap: 0;
	}
  
	.hero-left-column {
	  width: 100%;
	  margin-top: 40px;
	}
  
	.hero-right-column {
	  width: 100%;
	  margin-top: 40px;
	}
  
	.feature-tag {
	  white-space: initial;
	}
  
	.main-title,
	.download-count {
	  max-width: 100%;
	}
  
	.features-columns {
	  flex-direction: column;
	  align-items: stretch;
	  gap: 0;
	}
  
	.feature-column {
	  width: 100%;
	  margin-top: 40px;
	}

	.about-section {
		padding: 60px 20px;
	}
  
	.pain-points-section {
	  padding: 60px 20px;
	}

	.pain-points-section::before {
		transform: rotate(180deg);
		right: 0;
	}

	.pain-point-image-man {
		left: unset;
		bottom: -65px;
		width: 125px;
		right: 4%;
	}

	.pain-points-content {
	  width: 100%;
	}
  
	.pain-points-list {
	  white-space: initial;
	}

	.reasons-section {
		padding: 60px 20px;
	}
  
	.reason-columns {
	  flex-direction: column;
	  align-items: stretch;
	  gap: 0;
	}
  
	.reason-image-column,
	.reason-content-column {
	  width: 100%;
	  margin-top: 40px;
	}

	.reason-image-column,
	.testimonial-image {
		order: 1;
	}

	.reason-content-column,
	.testimonial-text {
		order: 2;
	}
  
	.platforms-section {
	  padding: 60px 20px;
	  white-space: initial;
	}
  
	.awards-section {
	  padding: 60px 20px;
	}
	.awards-container {
	  margin-top: 40px;
	}

	.awards-image-man {
		width: 120px;
		top: -40px;
	}
  
	.testimonials-section {
	  padding: 60px 20px;
	  margin-top: 40px;
	}
  
	.testimonial-card {
	  padding: 20px;
	}

	.comparison-image-people {
		width: 70px;
		top: -85px;
		right: 4%;
	}
  
	.comparison-header-cell,
	.comparison-cell {
	  white-space: initial;
	}
  
	.installation-section {
	  padding: 60px 20px;
	}
  
	.steps-container {
	  margin-top: 40px;
	  gap: 24px;
	  white-space: initial;
	  flex-direction: column;
	}

	.step-item {
		align-self: center;
	}

	.step-arrow {
		transform: rotate(90deg);
	}

	.faq-section {
		padding: 60px 20px;
	}

	.faq-image-woman {
		width: 120px;
		top: -70px;
		left: 4%;
	}

	.question-container {
		padding: 0;
	}

	.question-container::after {
		right: 8px;
	}

	.question-mark {
		font-size: var(--paragraph-medium);
		min-width: 24px;
		height: 24px;
	}

	.contact-section {
		padding: 60px 20px;
	}

	.contact-image-man {
		top: -20px;
		right: 4%;
	}
  
	.contact-banner {
	  padding-top: 100px;
	  padding-left: 20px;
	  margin-top: 40px;
	}
  
	.reason-number,
	.ratings-count {
	  font-size: 40px;
	}
  
	/* Add horizontal scroll for tables on mobile */
	.table-container {
	  overflow-x: auto;
	}
  
	.comparison-table {
	  width: 100%;
	}

	.comparison-table tr > *:not(:first-child) {
		min-width: 120px;
	}
  }
