.page-xo-so {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Deep Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #1a1a1a;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-xo-so section {
  padding: 60px 0;
  text-align: center;
}

.page-xo-so section:nth-of-type(even) {
  background-color: #e8e8e8;
}

.page-xo-so h1,
.page-xo-so h2,
.page-xo-so h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-xo-so h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-xo-so h2 {
  font-size: 2.2em;
  margin-top: 40px;
}

.page-xo-so h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

.page-xo-so p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-xo-so ul,
.page-xo-so ol {
  text-align: left;
  margin: 0 auto 20px;
  max-width: 800px;
  list-style-position: inside;
  padding-left: 0;
}

.page-xo-so ul li,
.page-xo-so ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-xo-so .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-xo-so .cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-xo-so .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-xo-so .btn-small:hover {
  background: var(--primary-color);
  color: var(--background-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-xo-so .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #104e8b 100%); /* Darker blue gradient */
}

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

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

.page-xo-so .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.4);
}

.page-xo-so .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-xo-so .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-xo-so .hero-content p {
  color: var(--text-light);
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Section Introduction */
.page-xo-so .section-introduction p {
  max-width: 900px;
  margin: 0 auto 20px;
}

.page-xo-so .section-introduction .image-wrapper {
  margin-top: 30px;
}

.page-xo-so .section-introduction img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Types */
.page-xo-so .section-types {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-xo-so .section-types h2 {
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.page-xo-so .section-types .type-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-xo-so .section-types .type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-xo-so .section-types .type-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.page-xo-so .section-types .type-card h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-xo-so .section-types .type-card h3 .page-xo-so.card-link {
  color: inherit; /* Ensure link color matches h3 */
  text-decoration: none;
}

.page-xo-so .section-types .type-card h3 .page-xo-so.card-link:hover {
  text-decoration: underline;
}

.page-xo-so .section-types .type-card p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Section Benefits */
.page-xo-so .section-benefits {
  background-color: #e8e8e8;
  padding: 60px 0;
}

.page-xo-so .section-benefits h2 {
  color: var(--primary-color);
}

.page-xo-so .section-benefits ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-xo-so .section-benefits ul li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  color: var(--text-dark);
}

.page-xo-so .section-benefits ul li strong {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Section Guide */
.page-xo-so .section-guide ol {
  counter-reset: guide-step;
  list-style: none;
  padding: 0;
}

.page-xo-so .section-guide ol li {
  background-color: #ffffff;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 25px;
  padding: 25px 30px 25px 50px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: left;
}

.page-xo-so .section-guide ol li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 15px;
  top: 20px;
  background-color: var(--primary-color);
  color: var(--background-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-xo-so .section-guide ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-size: 1.5em;
}

.page-xo-so .section-guide ol li p {
  font-size: 1em;
  color: var(--text-dark);
}

/* Section Tips */
.page-xo-so .section-tips {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-xo-so .section-tips h2 {
  color: var(--primary-color);
}

.page-xo-so .section-tips p {
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-xo-so .section-tips ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-xo-so .section-tips ul li {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-xo-so .section-tips ul li strong {
  color: var(--primary-color);
}

/* FAQ Section */
.page-xo-so .section-faq {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-xo-so .section-faq h2 {
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.page-xo-so .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-xo-so .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-xo-so .faq-question:hover {
  background: #f0f0f0;
}

.page-xo-so .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--text-dark);
  text-align: left;
}

.page-xo-so .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-xo-so .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-dark);
}

.page-xo-so .faq-answer p {
  margin: 15px 0;
  text-align: left;
}

.page-xo-so .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
}

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

/* Section Conclusion */
.page-xo-so .section-conclusion {
  padding: 60px 0;
  background-color: var(--secondary-color);
}

.page-xo-so .section-conclusion h2 {
  color: var(--primary-color);
}

.page-xo-so .section-conclusion p {
  color: var(--text-light);
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-xo-so h1 {
    font-size: 2.5em;
  }
  .page-xo-so h2 {
    font-size: 1.8em;
  }
  .page-xo-so h3 {
    font-size: 1.4em;
  }
  .page-xo-so .hero-content p {
    font-size: 1.1em;
  }
  .page-xo-so .section-types .type-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-xo-so section {
    padding: 40px 0;
  }
  .page-xo-so .hero-section {
    padding: 60px 15px;
  }
  .page-xo-so .hero-content h1 {
    font-size: 2em;
  }
  .page-xo-so .hero-content p {
    font-size: 1em;
  }
  .page-xo-so .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-xo-so .section-benefits ul {
    grid-template-columns: 1fr;
  }
  .page-xo-so .section-guide ol li {
    padding: 20px 20px 20px 45px;
  }
  .page-xo-so .section-guide ol li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 10px;
    top: 18px;
  }
  .page-xo-so .faq-question {
    padding: 15px 20px;
  }
  .page-xo-so .faq-question h3 {
    font-size: 1.1em;
  }
  .page-xo-so .faq-toggle {
    font-size: 1.5em;
  }
  .page-xo-so .faq-answer {
    padding: 0 20px;
  }
  .page-xo-so .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-xo-so .section-types .type-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-xo-so h1 {
    font-size: 1.8em;
  }
  .page-xo-so h2 {
    font-size: 1.6em;
  }
  .page-xo-so h3 {
    font-size: 1.2em;
  }
  .page-xo-so .cta-button {
    width: 100%;
    padding: 10px 20px;
  }
  .page-xo-so .btn-small {
    width: 100%;
    padding: 8px 15px;
  }
  .page-xo-so .section-types .type-card {
    padding: 20px;
  }
  .page-xo-so .section-types .type-card img {
    height: 150px;
  }
}