.page-x-s {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-x-s__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-x-s__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 0;
  opacity: 0.1;
}

.page-x-s__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-x-s__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-x-s__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-x-s__hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: 40px;
}

.page-x-s__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-x-s__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-x-s__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-x-s__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-x-s__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-x-s__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-x-s__image-centered {
  display: block;
  margin: 30px auto;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-x-s__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-x-s__card {
  background-color: #fefefe;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-x-s__card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-x-s__card-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-x-s__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-x-s__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-x-s__steps-list li {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s__steps-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-x-s__step-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-x-s__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-x-s__bullet-list li {
  background-color: #fefefe;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  position: relative;
  padding-left: 50px;
}

.page-x-s__bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD700;
  font-size: 1.5em;
  font-weight: bold;
}

.page-x-s__list-item-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 8px;
}

.page-x-s__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-x-s__benefit-item {
  text-align: center;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s__benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-x-s__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-x-s__benefit-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-x-s__accordion {
  margin-top: 40px;
}

.page-x-s__accordion-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-x-s__accordion-header {
  background-color: #1E90FF;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-x-s__accordion-header:hover {
  background-color: #1565b3;
}

.page-x-s__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-x-s__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-x-s__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-x-s__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #444;
}

.page-x-s__cta-section {
  background: linear-gradient(90deg, #1E90FF 0%, #0028ff 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-x-s__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-x-s__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Buttons */
.page-x-s__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-x-s__btn--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

.page-x-s__btn--primary:hover {
  background-color: #e6c200;
  color: #0028ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-x-s__btn--secondary {
  background-color: #1E90FF;
  color: #fff;
  border: 2px solid #1E90FF;
  padding: 10px 20px;
  font-size: 1em;
}

.page-x-s__btn--secondary:hover {
  background-color: #1565b3;
  border-color: #1565b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(30, 144, 255, 0.4);
}

.page-x-s__btn--tertiary {
  background-color: #f0f0f0;
  color: #1E90FF;
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-x-s__btn--tertiary:hover {
  background-color: #e0e0e0;
  color: #0028ff;
  transform: translateY(-1px);
}

.page-x-s__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-x-s__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-x-s__text-link {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-x-s__text-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-x-s .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-x-s__hero-section .page-x-s__container {
    flex-direction: column;
    text-align: center;
  }

  .page-x-s__hero-image-wrapper {
    margin: 40px 0 0 0;
    max-width: 80%;
  }

  .page-x-s__hero-title {
    font-size: 2.8em;
  }

  .page-x-s__hero-description {
    font-size: 1.1em;
  }

  .page-x-s__section-title {
    font-size: 2em;
  }

  .page-x-s__grid,
  .page-x-s__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-x-s__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-x-s__hero-section {
    padding: 60px 0;
  }

  .page-x-s__hero-title {
    font-size: 2.2em;
  }

  .page-x-s__hero-description {
    font-size: 1em;
  }

  .page-x-s__section {
    padding: 40px 0;
  }

  .page-x-s__section-title {
    font-size: 1.8em;
  }

  .page-x-s__card-title {
    font-size: 1.4em;
  }

  .page-x-s__step-title {
    font-size: 1.6em;
  }

  .page-x-s__list-item-title {
    font-size: 1.3em;
  }

  .page-x-s__cta-title {
    font-size: 1.8em;
  }

  .page-x-s__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-x-s__hero-title {
    font-size: 1.8em;
  }

  .page-x-s__hero-description {
    font-size: 0.9em;
  }

  .page-x-s__section-title {
    font-size: 1.5em;
  }

  .page-x-s__paragraph {
    font-size: 0.95em;
  }

  .page-x-s__grid,
  .page-x-s__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-x-s__card,
  .page-x-s__benefit-item,
  .page-x-s__steps-list li {
    padding: 20px;
  }

  .page-x-s__cta-title {
    font-size: 1.5em;
  }

  .page-x-s__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}