.page-xs__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-color-background);
  padding-bottom: 40px;
}

.page-xs__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-xs__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-xs__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-xs__main-title {
  color: var(--text-color-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  max-width: 600px; /* To prevent extremely long lines */
  margin-left: auto;
  margin-right: auto;
}

.page-xs__hero-description {
  color: var(--text-color-main);
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-xs__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: var(--button-color-button);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-xs__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-xs__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-xs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-xs__introduction-section,
.page-xs__types-section,
.page-xs__guide-section,
.page-xs__benefits-section,
.page-xs__faq-section,
.page-xs__conclusion-section {
  background-color: var(--bg-color-background);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color-border);
}

.page-xs__section-title {
  color: var(--text-color-main);
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-xs__paragraph {
  color: var(--text-color-main);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-xs__paragraph--conclusion {
  text-align: center;
  font-size: 1.15em;
  font-weight: 500;
}

.page-xs__image-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.page-xs__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-xs__list,
.page-xs__ordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-xs__list-item {
  color: var(--text-color-main);
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-xs__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: bold;
}

.page-xs__ordered-list .page-xs__list-item::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: var(--main-color);
  font-weight: bold;
  left: 0;
  font-size: 1.1em;
  top: 0;
}

.page-xs__faq-item {
  background-color: var(--bg-color-card-bg);
  border: 1px solid var(--border-color-border);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-xs__faq-question {
  color: var(--text-color-custom-color_1776249996415);
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-xs__faq-answer {
  color: var(--text-color-main);
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Color variables */
:root {
  --main-color: #2F6BFF;
  --accent-color: #6FA3FF;
  --button-color-button: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --bg-color-card-bg: #FFFFFF;
  --bg-color-background: #F4F7FB;
  --text-color-main: #1F2D3D;
  --text-color-custom-color_1776249996415: #000000;
  --border-color-border: #D6E2FF;
  --glow-color: #A5C4FF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-xs__hero-content {
    max-width: 700px;
  }
  .page-xs__main-title {
    font-size: 2.2em;
  }
  .page-xs__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-xs__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
  }
  .page-xs__main-title {
    font-size: 1.8em;
  }
  .page-xs__hero-description {
    font-size: 1em;
  }
  .page-xs__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-xs__paragraph,
  .page-xs__list-item,
  .page-xs__faq-answer {
    font-size: 0.95em;
  }
  .page-xs__faq-question {
    font-size: 1.1em;
  }
  .page-xs__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-xs__container {
    padding: 15px;
  }
  .page-xs__hero-image,
  .page-xs__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-xs__main-title {
    font-size: 1.5em;
  }
  .page-xs__section-title {
    font-size: 1.4em;
  }
  .page-xs__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-xs__list-item {
    padding-left: 25px;
  }
}

/* Ensure content images are at least 200px wide for content areas */
.page-xs__container img:not(.page-xs__hero-image) {
  min-width: 200px;
  min-height: 200px; /* Assuming square or height scales with width */
}