/* Base styles */
.page-dai-ly-fcb88 {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-dai-ly-fcb88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

.page-dai-ly-fcb88__section {
  padding: 60px 0;
  text-align: center;
}

.page-dai-ly-fcb88__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-dai-ly-fcb88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #22C768; /* Auxiliary color */
  border-radius: 2px;
}

.page-dai-ly-fcb88__text-block {
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 20px auto;
  line-height: 1.7;
}

.page-dai-ly-fcb88__text-block a {
  color: #2AD16F;
  text-decoration: none;
  font-weight: 600;
}

.page-dai-ly-fcb88__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-dai-ly-fcb88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: 10px; /* Small top padding */
  overflow: hidden;
}

.page-dai-ly-fcb88__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-dai-ly-fcb88__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px;
}

.page-dai-ly-fcb88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over image a bit */
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E;
}

.page-dai-ly-fcb88__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-dai-ly-fcb88__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Buttons */
.page-dai-ly-fcb88__btn-primary,
.page-dai-ly-fcb88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-dai-ly-fcb88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  border: none;
  margin: 10px;
}

.page-dai-ly-fcb88__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(42, 209, 111, 0.4);
}

.page-dai-ly-fcb88__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  margin: 10px;
}

.page-dai-ly-fcb88__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(42, 209, 111, 0.2);
}

.page-dai-ly-fcb88__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Introduction Section */
.page-dai-ly-fcb88__introduction-section {
  background-color: #0A4B2C; /* Deep Green */
}

/* Benefits Section */
.page-dai-ly-fcb88__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-fcb88__benefit-card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-dai-ly-fcb88__benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-dai-ly-fcb88__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-dai-ly-fcb88__benefit-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-dai-ly-fcb88__benefit-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Registration Section */
.page-dai-ly-fcb88__registration-section {
  background-color: #08160F;
}

.page-dai-ly-fcb88__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-fcb88__step-card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-dai-ly-fcb88__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-dai-ly-fcb88__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-dai-ly-fcb88__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-dai-ly-fcb88__image-center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-dai-ly-fcb88__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  display: block;
}

/* Commission Section */
.page-dai-ly-fcb88__commission-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-dai-ly-fcb88__commission-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-fcb88__detail-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-dai-ly-fcb88__detail-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-dai-ly-fcb88__detail-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Marketing Section */
.page-dai-ly-fcb88__marketing-section {
  background-color: #08160F;
}

.page-dai-ly-fcb88__marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-fcb88__marketing-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-dai-ly-fcb88__marketing-title {
  font-size: 20px;
  font-weight: 700;
  color: #2AD16F; /* Button color */
  margin-bottom: 10px;
}

.page-dai-ly-fcb88__marketing-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
details.page-dai-ly-fcb88__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  overflow: hidden;
  background: #11271B; /* Card BG */
  color: #F2FFF6;
}
details.page-dai-ly-fcb88__faq-item summary.page-dai-ly-fcb88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6;
}
details.page-dai-ly-fcb88__faq-item summary.page-dai-ly-fcb88__faq-question::-webkit-details-marker {
  display: none;
}
details.page-dai-ly-fcb88__faq-item summary.page-dai-ly-fcb88__faq-question:hover {
  background: rgba(46, 122, 78, 0.3); /* Border color with transparency */
}
.page-dai-ly-fcb88__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6;
}
.page-dai-ly-fcb88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2AD16F; /* Button color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-dai-ly-fcb88__faq-item .page-dai-ly-fcb88__faq-answer {
  padding: 0 25px 20px;
  background: rgba(17, 39, 27, 0.7); /* Slightly darker card BG with transparency */
  border-radius: 0 0 10px 10px;
  color: #A7D9B8;
  text-align: left;
}

.page-dai-ly-fcb88__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

/* CTA Section */
.page-dai-ly-fcb88__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-bottom: 80px;
}

/* Global image responsiveness */
.page-dai-ly-fcb88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-dai-ly-fcb88__hero-content {
    margin-top: -80px;
    padding: 30px;
  }
  .page-dai-ly-fcb88__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-dai-ly-fcb88__hero-description {
    font-size: clamp(16px, 2vw, 20px);
  }
  .page-dai-ly-fcb88__section-title {
    font-size: clamp(26px, 3.5vw, 34px);
  }
  .page-dai-ly-fcb88__benefits-grid,
  .page-dai-ly-fcb88__steps-grid,
  .page-dai-ly-fcb88__commission-details,
  .page-dai-ly-fcb88__marketing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 849px) {
  .page-dai-ly-fcb88__hero-image {
    object-fit: contain !important; 
    aspect-ratio: unset !important; 
  }
}

@media (max-width: 768px) {
  .page-dai-ly-fcb88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-dai-ly-fcb88__container {
    padding: 15px;
  }

  /* HERO Section */
  .page-dai-ly-fcb88__hero-section {
    min-height: auto;
    padding-top: 10px; /* Small top padding */
  }
  .page-dai-ly-fcb88__hero-image-wrapper {
    max-height: 400px;
  }
  .page-dai-ly-fcb88__hero-image {
    max-height: 400px;
    width: 100% !important;
    height: auto !important;
  }
  .page-dai-ly-fcb88__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 10px;
  }
  .page-dai-ly-fcb88__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }
  .page-dai-ly-fcb88__hero-description {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 20px;
  }

  /* Section Titles */
  .page-dai-ly-fcb88__section-title {
    font-size: clamp(24px, 7vw, 30px);
    margin-bottom: 30px;
  }

  /* Text Blocks */
  .page-dai-ly-fcb88__text-block {
    font-size: 16px;
    margin: 15px auto;
  }

  /* Buttons */
  .page-dai-ly-fcb88__btn-primary,
  .page-dai-ly-fcb88__btn-secondary,
  .page-dai-ly-fcb88 a[class*="button"],
  .page-dai-ly-fcb88 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
    margin: 8px 0 !important;
  }
  .page-dai-ly-fcb88__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* General Images and Containers */
  .page-dai-ly-fcb88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-dai-ly-fcb88__section,
  .page-dai-ly-fcb88__card,
  .page-dai-ly-fcb88__container,
  .page-dai-ly-fcb88__benefits-grid,
  .page-dai-ly-fcb88__steps-grid,
  .page-dai-ly-fcb88__commission-details,
  .page-dai-ly-fcb88__marketing-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    gap: 20px;
  }

  /* Benefits/Steps/Details/Marketing Grids */
  .page-dai-ly-fcb88__benefits-grid,
  .page-dai-ly-fcb88__steps-grid,
  .page-dai-ly-fcb88__commission-details,
  .page-dai-ly-fcb88__marketing-grid {
    grid-template-columns: 1fr;
  }
  .page-dai-ly-fcb88__benefit-card, .page-dai-ly-fcb88__step-card, .page-dai-ly-fcb88__detail-item, .page-dai-ly-fcb88__marketing-item {
    padding: 25px 20px;
    border-radius: 10px;
  }
  .page-dai-ly-fcb88__benefit-icon {
    max-width: 200px;
    min-width: 200px;
    min-height: 200px;
  }
  .page-dai-ly-fcb88__step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* FAQ Section */
  details.page-dai-ly-fcb88__faq-item summary.page-dai-ly-fcb88__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-dai-ly-fcb88__faq-qtext {
    font-size: 16px;
  }
  .page-dai-ly-fcb88__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-dai-ly-fcb88__faq-item .page-dai-ly-fcb88__faq-answer {
    padding: 0 20px 15px;
  }
  .page-dai-ly-fcb88__faq-list {
    margin-top: 30px;
  }
}