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

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

.page-x-s section {
  padding: 60px 0;
  text-align: center;
}

.page-x-s section:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-x-s h1,
.page-x-s h2,
.page-x-s h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-x-s h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

.page-x-s h2 {
  font-size: 2.5em;
}

.page-x-s h3 {
  font-size: 1.8em;
}

.page-x-s p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-x-s ul {
  list-style: none;
  padding: 0;
  margin: 20px auto 30px auto;
  max-width: 800px;
}

.page-x-s ul li {
  background-color: #ffffff;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 10px;
  padding: 15px 20px;
  text-align: left;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
}

.page-x-s .cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-x-s .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-x-s .secondary-button {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-x-s .secondary-button:hover {
  background-color: #071a47; /* Slightly darker blue */
  color: var(--secondary-color);
}

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

/* Hero Section Specific */
.page-x-s .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A2463 50%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.page-x-s .hero-content {
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.page-x-s .hero-content h1 {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-x-s .hero-content p {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-x-s .hero-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-x-s .hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-x-s .faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-x-s .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

.page-x-s .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-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-color: #f9f9f9;
  color: var(--text-dark);
}

.page-x-s .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px 25px 25px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-x-s .hero-content h1 {
    font-size: 3em;
  }
  .page-x-s .hero-content p {
    font-size: 1.2em;
  }
  .page-x-s h2 {
    font-size: 2em;
  }
  .page-x-s h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-x-s section {
    padding: 40px 0;
  }
  .page-x-s .hero-content h1 {
    font-size: 2.5em;
  }
  .page-x-s .hero-content p {
    font-size: 1em;
  }
  .page-x-s .cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-x-s h2 {
    font-size: 1.8em;
  }
  .page-x-s h3 {
    font-size: 1.4em;
  }
  .page-x-s p {
    font-size: 0.95em;
  }
  .page-x-s ul li {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .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: 1.5em;
  }
  .page-x-s .faq-answer {
    padding: 0 20px;
  }
  .page-x-s .faq-item.active .faq-answer {
    padding: 15px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-x-s .hero-content h1 {
    font-size: 2em;
  }
  .page-x-s .hero-content p {
    font-size: 0.9em;
  }
  .page-x-s .cta-button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-x-s h2 {
    font-size: 1.5em;
  }
  .page-x-s h3 {
    font-size: 1.2em;
  }
  .page-x-s p {
    font-size: 0.9em;
  }
  .page-x-s .faq-question h3 {
    font-size: 1em;
  }
}