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

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

.page-x-s__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

.page-x-s__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-x-s__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-x-s__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.page-x-s__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-x-s__hero-description {
  font-size: 1.2em;
  color: #D3D3D3;
  margin-bottom: 30px;
}

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

.page-x-s__section--types {
  background-color: #0A192F;
}

.page-x-s__section--why-choose {
  background-color: #12284C;
}

.page-x-s__section--guide {
  background-color: #0A192F;
}

.page-x-s__section--tips {
  background-color: #12284C;
}

.page-x-s__section--faq {
  background-color: #0A192F;
}

.page-x-s__section--conclusion {
  background-color: #12284C;
  text-align: center;
}

.page-x-s__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-x-s__section-subtitle {
  font-size: 1.1em;
  color: #D3D3D3;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-x-s__card {
  background-color: #1A2E4B;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-x-s__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-x-s__card-text {
  color: #C0C0C0;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-x-s__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: auto;
  cursor: pointer;
  border: none;
}

.page-x-s__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-x-s__button--primary:hover {
  background-color: #e6c200;
}

.page-x-s__button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-x-s__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-x-s__button--link {
  background: none;
  color: #FFD700;
  padding: 0;
  text-align: left;
  font-size: 1em;
}

.page-x-s__button--link:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-x-s__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-x-s__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-x-s__feature-item {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-x-s__feature-text {
  color: #C0C0C0;
  font-size: 1em;
}

.page-x-s__cta-section {
  text-align: center;
  margin-top: 40px;
}

.page-x-s__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-x-s__step-card {
  background-color: #1A2E4B;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-x-s__step-number {
  background-color: #FFD700;
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-x-s__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-x-s__step-text {
  color: #C0C0C0;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-x-s__grid--two-columns {
  grid-template-columns: 2fr 1fr;
  align-items: flex-start;
}

.page-x-s__content-block {
  padding-right: 20px;
}

.page-x-s__content-block-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-x-s__content-block-title:first-child {
  margin-top: 0;
}

.page-x-s__content-block-text {
  color: #C0C0C0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-x-s__image-aside {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
}

.page-x-s__image-aside-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-x-s__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-x-s__accordion-item {
  background-color: #1A2E4B;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s__accordion-header {
  background-color: #0A192F;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-x-s__accordion-header:hover {
  background-color: #0f243f;
}

.page-x-s__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  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: #1A2E4B;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-x-s__accordion-content p {
  color: #C0C0C0;
  font-size: 1em;
  padding-bottom: 15px;
  margin-top: 15px;
}

.page-x-s__accordion-content .page-x-s__button {
  margin-bottom: 15px;
}

.page-x-s__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-x-s__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-x-s__hero-title {
    font-size: 2.8em;
  }
  .page-x-s__section-title {
    font-size: 2.2em;
  }
  .page-x-s__grid--two-columns {
    grid-template-columns: 1fr;
  }
  .page-x-s__content-block {
    padding-right: 0;
  }
  .page-x-s__image-aside {
    padding-left: 0;
    margin-top: 40px;
  }
  .page-x-s__image-aside-img {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-x-s__hero {
    height: 400px;
  }
  .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__section-subtitle {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-x-s__card-title {
    font-size: 1.3em;
  }
  .page-x-s__feature-title {
    font-size: 1.4em;
  }
  .page-x-s__step-title {
    font-size: 1.2em;
  }
  .page-x-s__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-x-s__accordion-content p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-x-s__hero {
    height: 350px;
  }
  .page-x-s__hero-title {
    font-size: 1.8em;
  }
  .page-x-s__hero-description {
    font-size: 0.9em;
  }
  .page-x-s__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-x-s__section-title {
    font-size: 1.5em;
  }
  .page-x-s__grid,
  .page-x-s__features-list,
  .page-x-s__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-x-s__card,
  .page-x-s__feature-item,
  .page-x-s__step-card {
    padding: 20px;
  }
  .page-x-s__card-image {
    height: 150px;
  }
  .page-x-s__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-x-s__content-block-title {
    font-size: 1.5em;
  }
  .page-x-s__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-x-s__accordion-content {
    padding: 0 15px;
  }
}