.page-fortunemouse {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F7FA; /* Light background for the body */
}

.page-fortunemouse__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  color: #ffffff; /* Text color for dark background */
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%); /* Brand colors for hero background */
  overflow: hidden;
}

.page-fortunemouse__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

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

.page-fortunemouse__hero-content {
  position: relative; /* Ensure content is above image if image is behind */
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-fortunemouse__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-fortunemouse__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fortunemouse__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #E53935;
}

.page-fortunemouse__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E53935;
}

.page-fortunemouse__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-fortunemouse__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fortunemouse__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fortunemouse__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding */
  background-color: #F5F7FA;
  text-align: center;
}

.page-fortunemouse__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-fortunemouse__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-fortunemouse__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-fortunemouse__video-cta {
  margin-top: 20px;
}

.page-fortunemouse__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #F5F7FA;
  color: #333333;
}

.page-fortunemouse__image-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fortunemouse__faq-list {
  margin-top: 40px;
}

.page-fortunemouse__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fortunemouse__faq-item summary {
  list-style: none;
}

.page-fortunemouse__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fortunemouse__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-fortunemouse__faq-question:hover {
  background-color: #f9f9f9;
}

.page-fortunemouse__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E53935;
  margin-left: 10px;
}

.page-fortunemouse__faq-item[open] .page-fortunemouse__faq-toggle {
  content: '−';
}

.page-fortunemouse__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #555555;
}

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

.page-fortunemouse__cta-section {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.page-fortunemouse__cta-content {
  max-width: 900px;
  margin-bottom: 30px;
}

.page-fortunemouse__cta-section .page-fortunemouse__section-title {
  color: #ffffff;
}

.page-fortunemouse__cta-section .page-fortunemouse__text-block {
  color: #f0f0f0;
}

.page-fortunemouse__cta-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

  .page-fortunemouse__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fortunemouse__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-fortunemouse__hero-content {
    padding: 0 15px;
  }

  .page-fortunemouse__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-fortunemouse__hero-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .page-fortunemouse__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-fortunemouse__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 25px;
  }

  .page-fortunemouse__text-block {
    font-size: 1rem;
  }

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

  .page-fortunemouse__video-section {
    padding: 10px 15px 40px 15px !important;
  }

  .page-fortunemouse__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-fortunemouse__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fortunemouse__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortunemouse__content-area {
    padding: 40px 15px;
  }

  .page-fortunemouse__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-fortunemouse__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-fortunemouse__faq-answer {
    padding: 0 15px 15px 15px;
  }

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

  .page-fortunemouse__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px;
  }
}

/* Ensure content areas are contained on mobile */
@media (max-width: 768px) {
  .page-fortunemouse__section,
  .page-fortunemouse__card,
  .page-fortunemouse__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}