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

.page-dai-ly__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-dai-ly__section-title {
  font-size: 2.5em;
  color: #FFD86A; /* Gold-like for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-dai-ly__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF5E1;
}

/* Button Styles */
.page-dai-ly__btn-primary,
.page-dai-ly__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* For general button rule */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-dai-ly__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: none;
}

.page-dai-ly__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-dai-ly__btn-secondary {
  background: transparent;
  color: #FFD86A; /* Gold text */
  border: 2px solid #FFD86A; /* Gold border */
}

.page-dai-ly__btn-secondary:hover {
  background: #FFD86A;
  color: #7A0E0E; /* Deep Red text on gold background */
}

/* Image Responsive Base */
.page-dai-ly img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.page-dai-ly__hero-section {
  padding-top: 10px; /* Adhering to the 10px rule for non-body padding-top */
  padding-bottom: 60px;
  background: #B71C1C; /* Background */
}

.page-dai-ly__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-dai-ly__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
  color: #FFF5E1; /* Text Main */
}

.page-dai-ly__hero-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Clamp for H1 */
  color: #FFD86A; /* Gold for title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

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

.page-dai-ly__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-dai-ly__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-dai-ly__hero-side-image {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.page-dai-ly__benefits-section {
  background: #D32F2F; /* Card BG */
  padding: 60px 0;
}

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

.page-dai-ly__benefit-card {
  background: #7A0E0E; /* Deep Red for card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #F2B544; /* Border custom color */
}

.page-dai-ly__icon-box-media {
  width: 200px; /* Fixed size for square/circle */
  height: 200px; /* Fixed size for square/circle */
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F4D34D; /* Gold border for icon */
}

.page-dai-ly__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also round */
}

.page-dai-ly__benefit-title {
  font-size: 1.5em;
  color: #FFD86A; /* Gold for title */
  margin-bottom: 10px;
}

.page-dai-ly__benefit-text {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
}

/* How It Works Section */
.page-dai-ly__how-it-works-section {
  background: #B71C1C; /* Background */
  padding: 60px 0;
}

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

.page-dai-ly__step-card {
  background: #7A0E0E; /* Deep Red for card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #F2B544; /* Border custom color */
}

.page-dai-ly__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
  color: #7A0E0E; /* Deep Red */
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-dai-ly__step-title {
  font-size: 1.5em;
  color: #FFD86A; /* Gold for title */
  margin-bottom: 10px;
}

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

.page-dai-ly__step-image {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Commission Section */
.page-dai-ly__commission-section {
  background: #D32F2F; /* Card BG */
  padding: 60px 0;
}

.page-dai-ly__commission-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 10px;
  background: #7A0E0E; /* Deep Red */\  border: 1px solid #F2B544; /* Border custom color */
  padding: 20px;
}

.page-dai-ly__commission-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is wide enough for mobile overflow */
}

.page-dai-ly__commission-table th,
.page-dai-ly__commission-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF5E1; /* Text Main */
}

.page-dai-ly__commission-table th {
  background: #C91F17; /* Main color */
  color: #FFD86A; /* Gold */
  font-weight: bold;
}

.page-dai-ly__commission-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.1);
}

.page-dai-ly__commission-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-dai-ly__note {
  font-size: 0.9em;
  color: #F2B544; /* Border custom color */
  text-align: center;
  margin-top: 20px;
}

/* Marketing Tools Section */
.page-dai-ly__marketing-tools-section {
  background: #B71C1C; /* Background */
  padding: 60px 0;
}

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

.page-dai-ly__tool-card {
  background: #7A0E0E; /* Deep Red */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #F2B544; /* Border custom color */
}

.page-dai-ly__tool-image {
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-dai-ly__tool-title {
  font-size: 1.5em;
  color: #FFD86A; /* Gold */
  margin-bottom: 10px;
}

.page-dai-ly__tool-text {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
}

/* FAQ Section */
.page-dai-ly__faq-section {
  background: #D32F2F; /* Card BG */
  padding: 60px 0;
}

.page-dai-ly__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-dai-ly__faq-item {
  background: #7A0E0E; /* Deep Red */
  border: 1px solid #F2B544; /* Border custom color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-dai-ly__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD86A; /* Gold */
  cursor: pointer;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-dai-ly__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-dai-ly__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD86A; /* Gold */
  transition: transform 0.3s ease;
}

.page-dai-ly__faq-item[open] .page-dai-ly__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-dai-ly__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  line-height: 1.6;
}

/* Final CTA Section */
.page-dai-ly__cta-section {
  background: #B71C1C; /* Background */
  padding: 60px 0;
  text-align: center;
}

.page-dai-ly__cta-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-dai-ly__cta-title {
  color: #FFD86A; /* Gold */
}

.page-dai-ly__cta-description {
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
}

.page-dai-ly__cta-button {
  margin-top: 20px;
  padding: 15px 40px;
  font-size: 1.2em;
}

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

  /* General Content Area Padding */
  .page-dai-ly__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Section Titles */
  .page-dai-ly__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-dai-ly__section-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* 1. HERO Section */
  .page-dai-ly__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-dai-ly__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .page-dai-ly__hero-content {
    text-align: center;
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-dai-ly__hero-title {
    font-size: 2.2em;
  }

  .page-dai-ly__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons in Hero and general buttons */
  .page-dai-ly__btn-primary,
  .page-dai-ly__btn-secondary,
  .page-dai-ly a[class*="button"],
  .page-dai-ly 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-left: 15px;
    padding-right: 15px;
  }

  .page-dai-ly__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  /* 2. Module 1 (Benefits) - Three column with round images */
  .page-dai-ly__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-dai-ly__benefit-card {
    padding: 20px;
  }

  .page-dai-ly__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }

  .page-dai-ly__benefit-title {
    font-size: 1.3em;
  }

  /* How It Works Section */
  .page-dai-ly__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-dai-ly__step-card {
    padding: 20px;
  }

  .page-dai-ly__step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }

  .page-dai-ly__step-title {
    font-size: 1.3em;
  }

  /* Commission Section */
  .page-dai-ly__commission-table-wrapper {
    padding: 10px;
    border-radius: 8px;
  }

  .page-dai-ly__commission-table th,
  .page-dai-ly__commission-table td {
    padding: 10px;
    font-size: 0.9em;
  }

  /* Marketing Tools Section */
  .page-dai-ly__tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-dai-ly__tool-card {
    padding: 20px;
  }

  .page-dai-ly__tool-title {
    font-size: 1.3em;
  }

  /* FAQ Section */
  .page-dai-ly__faq-list {
    margin-top: 20px;
  }

  .page-dai-ly__faq-item {
    margin-bottom: 10px;
  }

  .page-dai-ly__faq-item summary {
    padding: 15px;
    font-size: 1.1em;
  }

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

  /* Final CTA Section */
  .page-dai-ly__cta-content-wrapper {
    padding: 20px 15px;
  }

  .page-dai-ly__cta-title {
    font-size: 2em;
  }

  .page-dai-ly__cta-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-dai-ly__cta-button {
    padding: 12px 20px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Universal Image Responsive for content area */
  .page-dai-ly img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Specific override for round images to maintain aspect ratio, not auto height */
  .page-dai-ly__icon-box-media img {
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Container overflow handling for mobile */
  .page-dai-ly__benefits-section,
  .page-dai-ly__how-it-works-section,
  .page-dai-ly__commission-section,
  .page-dai-ly__marketing-tools-section,
  .page-dai-ly__faq-section,
  .page-dai-ly__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
}