.page-fortuneox {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-fortuneox__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fortuneox__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #C91F17; /* Primary color for hero section */
  overflow: hidden;
}

.page-fortuneox__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fortuneox__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px; /* Separates content from image */
}

.page-fortuneox__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #FFD86A; /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fortuneox__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
}

.page-fortuneox__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for text on gold button for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortuneox__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-fortuneox__cta-button--dark {
  background: linear-gradient(180deg, #E53935 0%, #C91F17 100%);
  color: #FFF5E1;
  border: 2px solid #7A0E0E;
}

.page-fortuneox__cta-button--dark:hover {
  background: linear-gradient(180deg, #C91F17 0%, #E53935 100%);
}

.page-fortuneox__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-fortuneox__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-fortuneox__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #FFCC66; /* Glow color for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-fortuneox__section-title--dark {
  color: #C91F17; /* Primary color for titles on light background */
}

.page-fortuneox__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  color: #F4D34D; /* Gold color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fortuneox__sub-title--dark {
  color: #C91F17; /* Primary color for sub-titles on light background */
}

.page-fortuneox__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-fortuneox__text-block--dark {
  color: #333333; /* Dark text on light background */
}

.page-fortuneox__highlight {
  font-weight: bold;
  color: #FFD86A; /* Highlight color */
}

.page-fortuneox__text-block--dark .page-fortuneox__highlight {
  color: #C91F17; /* Primary color for highlights on light background */
}

.page-fortuneox__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fortuneox__image--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; /* Example max-width for content images */
}

.page-fortuneox__text-link {
  color: #FFD86A; /* Gold for links */
  text-decoration: underline;
}

.page-fortuneox__text-link:hover {
  color: #E6B800; /* Darker gold on hover */
}

/* Light background sections */
.page-fortuneox__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text */
}

/* FAQ Section */
.page-fortuneox__faq-section {
  background-color: #B71C1C; /* Background color */
  padding: 60px 0;
}

.page-fortuneox__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-fortuneox__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #7A0E0E; /* Deep Red border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fortuneox__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main */
  background-color: #C91F17; /* Primary color for question background */
  border-bottom: 1px solid #7A0E0E;
}

.page-fortuneox__faq-question::-webkit-details-marker {
  display: none;
}

.page-fortuneox__faq-question::marker {
  display: none;
}

.page-fortuneox__faq-item[open] > .page-fortuneox__faq-question {
  border-bottom: 1px solid #7A0E0E;
}

.page-fortuneox__faq-qtext {
  flex-grow: 1;
}

.page-fortuneox__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD86A; /* Gold color for toggle icon */
}

.page-fortuneox__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  background-color: #D32F2F; /* Card BG */
}

.page-fortuneox__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-fortuneox__conclusion-section {
  text-align: center;
  padding: 80px 0;
  background-color: #C91F17; /* Primary color */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-fortuneox__container {
    padding: 0 15px;
  }

  .page-fortuneox__hero-section {
    padding-bottom: 30px;
  }

  .page-fortuneox__hero-content {
    margin-top: 10px;
    padding: 15px;
  }

  .page-fortuneox__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em); /* Adjust for smaller screens */
    margin-bottom: 15px;
  }

  .page-fortuneox__description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .page-fortuneox__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fortuneox__section {
    padding: 40px 0;
  }

  .page-fortuneox__section-title {
    font-size: clamp(1.6em, 7vw, 2em);
    margin-bottom: 30px;
  }

  .page-fortuneox__sub-title {
    font-size: clamp(1.2em, 6vw, 1.6em);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-fortuneox__text-block {
    font-size: 0.9em;
  }

  .page-fortuneox img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fortuneox video,
  .page-fortuneox__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fortuneox__video-section,
  .page-fortuneox__video-container,
  .page-fortuneox__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fortuneox__video-section {
    padding-top: 10px !important;
  }

  .page-fortuneox__cta-buttons,
  .page-fortuneox__button-group,
  .page-fortuneox__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-fortuneox__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-fortuneox__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-fortuneox__faq-answer {
    padding: 15px 20px;
  }

  .page-fortuneox__conclusion-section {
    padding: 50px 0;
  }
}