.page-fortune-dragon {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Page background color */
}

/* Hero Section */
.page-fortune-dragon__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #F5F7FA; /* Ensure consistent background */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-fortune-dragon__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px; /* Space between image and text */
}

.page-fortune-dragon__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fortune-dragon__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fortune-dragon__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #E53935; /* Main brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-fortune-dragon__subtitle {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.page-fortune-dragon__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortune-dragon__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

/* Sections General */
.page-fortune-dragon__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fortune-dragon__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-fortune-dragon__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.page-fortune-dragon__about-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Light background */
}

.page-fortune-dragon__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-fortune-dragon__feature-card,
.page-fortune-dragon__strategy-card,
.page-fortune-dragon__experience-card,
.page-fortune-dragon__faq-item {
  background-color: #FFFFFF; /* Card background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border: 1px solid #E0E0E0; /* Border color */
}

.page-fortune-dragon__feature-icon,
.page-fortune-dragon__experience-icon {
  width: 100%;
  height: auto;
  max-width: 100%; /* Ensure responsiveness */
  margin-bottom: 20px;
  border-radius: 8px;
  display: block; /* Remove extra space below image */
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-fortune-dragon__feature-title,
.page-fortune-dragon__strategy-title,
.page-fortune-dragon__experience-title {
  font-size: 1.5em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fortune-dragon__feature-description,
.page-fortune-dragon__strategy-description,
.page-fortune-dragon__experience-description {
  font-size: 1em;
  color: #333333;
}

/* Strategy Section */
.page-fortune-dragon__strategy-section {
  padding: 80px 0;
  background-color: #E53935; /* Dark background */
  color: #ffffff; /* White text for dark background */
}

.page-fortune-dragon__strategy-section .page-fortune-dragon__section-title,
.page-fortune-dragon__strategy-section .page-fortune-dragon__text-block,
.page-fortune-dragon__strategy-section .page-fortune-dragon__strategy-title,
.page-fortune-dragon__strategy-section .page-fortune-dragon__strategy-description {
  color: #ffffff;
}

.page-fortune-dragon__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Experience Section */
.page-fortune-dragon__experience-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Light background */
}

.page-fortune-dragon__experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* FAQ Section */
.page-fortune-dragon__faq-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Light background */
}

.page-fortune-dragon__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortune-dragon__faq-item {
  margin-bottom: 20px;
  text-align: left;
  overflow: hidden; /* For transition */
}

.page-fortune-dragon__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #E53935;
  background-color: #ffffff;
  border-bottom: 1px solid #E0E0E0;
}

.page-fortune-dragon__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Chrome default marker */
}

.page-fortune-dragon__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FF5A4F;
}

.page-fortune-dragon__faq-item[open] .page-fortune-dragon__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-fortune-dragon__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #333333;
  background-color: #fcfcfc;
  border-top: 1px solid #E0E0E0;
}

/* Final CTA Section */
.page-fortune-dragon__cta-final {
  padding: 80px 20px;
  background-color: #FF5A4F; /* Auxiliary brand color */
  color: #ffffff;
  text-align: center;
}

.page-fortune-dragon__cta-final .page-fortune-dragon__section-title,
.page-fortune-dragon__cta-final .page-fortune-dragon__text-block {
  color: #ffffff;
}

.page-fortune-dragon__cta-button--secondary {
  background: #ffffff;
  color: #E53935;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.page-fortune-dragon__cta-button--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-fortune-dragon {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fortune-dragon__hero-section {
    padding: 40px 15px;
  }

  .page-fortune-dragon__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fortune-dragon__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-fortune-dragon__subtitle {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-fortune-dragon__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-fortune-dragon__text-block {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-fortune-dragon__features-grid,
  .page-fortune-dragon__strategy-cards,
  .page-fortune-dragon__experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fortune-dragon__feature-card,
  .page-fortune-dragon__strategy-card,
  .page-fortune-dragon__experience-card,
  .page-fortune-dragon__faq-item {
    padding: 20px;
  }

  .page-fortune-dragon__feature-icon,
  .page-fortune-dragon__experience-icon,
  .page-fortune-dragon__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset; /* Override min-width for mobile */
    min-height: unset; /* Override min-height for mobile */
  }
  
  /* Ensure all containers with images/buttons/videos are responsive */
  .page-fortune-dragon__container,
  .page-fortune-dragon__hero-section,
  .page-fortune-dragon__about-section,
  .page-fortune-dragon__strategy-section,
  .page-fortune-dragon__experience-section,
  .page-fortune-dragon__faq-section,
  .page-fortune-dragon__cta-final,
  .page-fortune-dragon__hero-image-wrapper,
  .page-fortune-dragon__hero-content,
  .page-fortune-dragon__features-grid,
  .page-fortune-dragon__strategy-cards,
  .page-fortune-dragon__experience-grid,
  .page-fortune-dragon__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific for FAQ item summary */
  .page-fortune-dragon__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-fortune-dragon__faq-answer {
    padding: 15px;
  }
}