.page-x-s {
  --primary-color: #0056B3;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #0a2d52;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-x-s-heading {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.3;
}

.page-x-s-heading strong {
  color: var(--secondary-color);
}

.page-x-s-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-color-dark);
}

.page-x-s .primary-button,
.page-x-s .secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.page-x-s .primary-button {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-x-s .primary-button:hover {
  background-color: #004085;
  border-color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-x-s .secondary-button {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
  border: 2px solid var(--secondary-color);
}

.page-x-s .secondary-button:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-x-s .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-dark); /* Dark background for hero */
  color: var(--text-color-light);
}

.page-x-s .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-x-s .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-x-s .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-x-s .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-x-s .page-x-s-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  line-height: 1.2;
}

.page-x-s .page-x-s-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .page-x-s-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-x-s .page-x-s-cta-button {
  padding: 18px 45px;
  font-size: 1.2em;
}

/* Section Intro */
.page-x-s .section-intro {
  background-color: var(--bg-light);
  padding: 80px 0;
  text-align: justify;
}

.page-x-s .section-intro p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-color-dark);
}

.page-x-s .section-intro strong {
  color: var(--primary-color);
}

/* Section Types */
.page-x-s .section-types {
  padding: 80px 0;
  background-color: var(--card-bg);
}

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

.page-x-s .page-x-s-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-x-s .page-x-s-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.page-x-s .page-x-s-card-img {
  width: 100%;
  height: 220px; /* Ensure images are not small */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-x-s .page-x-s-card-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-x-s .page-x-s-card-link {
  text-decoration: none;
  color: inherit;
}

.page-x-s .page-x-s-card-link:hover {
  color: var(--secondary-color);
}

.page-x-s .page-x-s-card-text {
  font-size: 1em;
  color: var(--text-color-dark);
  padding: 0 20px 20px;
  text-align: justify;
}

.page-x-s .page-x-s-button-small {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-x-s .page-x-s-button-small:hover {
  background-color: #004085;
}

/* Section Advantages */
.page-x-s .section-advantages {
  background-color: var(--bg-light);
  padding: 80px 0;
}

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

.page-x-s .page-x-s-advantage-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-x-s .page-x-s-advantage-item:hover {
  transform: translateY(-5px);
}

.page-x-s .page-x-s-advantage-icon {
  width: 100px; /* Ensure icons are large enough */
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-x-s .page-x-s-advantage-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-x-s .page-x-s-advantage-item p {
  font-size: 1em;
  color: var(--text-color-dark);
}

/* Section Guide */
.page-x-s .section-guide {
  padding: 80px 0;
  background-color: var(--card-bg);
}

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

.page-x-s .page-x-s-step-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-x-s .page-x-s-step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-x-s .page-x-s-step-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-x-s .page-x-s-step-item p {
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: justify;
  margin-bottom: 20px;
}

/* Section Strategy */
.page-x-s .section-strategy {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
  padding: 80px 0;
}

.page-x-s .section-strategy .page-x-s-heading {
  color: var(--secondary-color);
}

.page-x-s .section-strategy p {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-x-s .page-x-s-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-x-s .page-x-s-list li {
  background-color: #1a4a7d; /* Slightly lighter dark for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
  text-align: justify;
}

.page-x-s .page-x-s-list li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 15px;
}

/* FAQ Section */
.page-x-s .section-faq {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-x-s .page-x-s-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-x-s .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-x-s .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-x-s .faq-question:hover {
  background: #f0f0f0;
}

.page-x-s .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-x-s .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-x-s .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-x-s .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-x-s .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.page-x-s .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Section Call to Action */
.page-x-s .section-call-to-action {
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  padding: 80px 0;
  text-align: center;
  color: var(--text-color-light);
}

.page-x-s .section-call-to-action .page-x-s-heading {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-x-s .section-call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-x-s .page-x-s-title {
    font-size: 3em;
  }
  .page-x-s-heading {
    font-size: 2em;
  }
  .page-x-s .page-x-s-card-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-x-s .hero-section {
    padding: 40px 15px;
  }
  .page-x-s .hero-image img {
    border-radius: 8px;
  }
  .page-x-s .page-x-s-title {
    font-size: 2.5em;
  }
  .page-x-s .page-x-s-description {
    font-size: 1.1em;
  }
  .page-x-s .page-x-s-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-x-s .page-x-s-cta-button {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-x-s-heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-x-s .page-x-s-grid-container,
  .page-x-s .page-x-s-advantage-grid,
  .page-x-s .page-x-s-guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-x-s .page-x-s-card-title {
    font-size: 1.4em;
  }
  .page-x-s .page-x-s-advantage-item h3,
  .page-x-s .page-x-s-step-item h3 {
    font-size: 1.3em;
  }
  .page-x-s .page-x-s-list li {
    padding: 15px 20px 15px 40px;
    font-size: 0.95em;
  }
  .page-x-s .faq-question {
    padding: 15px 20px;
  }
  .page-x-s .faq-question h3 {
    font-size: 1.1em;
  }
  .page-x-s .faq-toggle {
    font-size: 20px;
  }
  .page-x-s .faq-answer {
    padding: 0 20px;
  }
  .page-x-s .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-x-s .page-x-s-title {
    font-size: 2em;
  }
  .page-x-s .page-x-s-description {
    font-size: 1em;
  }
  .page-x-s-heading {
    font-size: 1.5em;
  }
  .page-x-s .page-x-s-cta-button {
    width: 100%;
  }
  .page-x-s .page-x-s-card-img {
    height: 180px;
  }
  .page-x-s .page-x-s-advantage-icon,
  .page-x-s .page-x-s-step-icon {
    width: 80px;
    height: 80px;
  }
}