.page-dai-ly {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background: var(--background, #08160F);
}

.page-dai-ly__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-dai-ly__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-dai-ly__dark-section {
  background: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-dai-ly__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

.page-dai-ly__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
}

.page-dai-ly__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-height: 400px;
}

.page-dai-ly__hero-content {
  position: relative; /* Ensure content is above image if needed, but not overlaying */
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up a bit, but not over the image */
  background: linear-gradient(0deg, var(--background, #08160F) 70%, transparent 100%);
  border-radius: 10px;
}

.page-dai-ly__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-dai-ly__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-dai-ly__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-dai-ly__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  border: none;
}

.page-dai-ly__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-dai-ly__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold, #F2C14E);
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-dai-ly__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-dai-ly__introduction-section {
  background: var(--background, #08160F);
}

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

.page-dai-ly__benefit-card {
  background: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-dai-ly__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-dai-ly__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px;
}

.page-dai-ly__benefit-title {
  font-size: 1.5rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-dai-ly__benefit-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
}

.page-dai-ly__how-it-works-section {
  background: var(--background, #08160F);
}

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

.page-dai-ly__step-card {
  background: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border, #2E7A4E);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-dai-ly__step-number {
  font-size: 3rem;
  font-weight: bold;
  color: rgba(var(--primary-color-rgb, 17, 168, 78), 0.2);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  z-index: 0;
}

.page-dai-ly__step-title {
  font-size: 1.4rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.page-dai-ly__step-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.page-dai-ly__cta-group {
  margin-top: 50px;
  text-align: center;
}

.page-dai-ly__requirements-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-dai-ly__requirements-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-dai-ly__requirements-item {
  background: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.page-dai-ly__requirements-item::before {
  content: '✔';
  color: var(--primary-color, #11A84E);
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.page-dai-ly__registration-guide-section {
  background: var(--background, #08160F);
}

.page-dai-ly__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-dai-ly__guide-step {
  background: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border, #2E7A4E);
  position: relative;
}

.page-dai-ly__guide-step-title {
  font-size: 1.4rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-dai-ly__guide-step-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
}

.page-dai-ly__guide-step-description a {
  color: var(--primary-color, #11A84E);
  text-decoration: underline;
}

.page-dai-ly__guide-step-description a:hover {
  color: var(--secondary-color, #22C768);
}

.page-dai-ly__faq-section {
  background: var(--background, #08160F);
}

.page-dai-ly__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

details.page-dai-ly__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border, #2E7A4E);
  overflow: hidden;
  background: var(--card-bg, #11271B);
}
details.page-dai-ly__faq-item summary.page-dai-ly__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-dai-ly__faq-item summary.page-dai-ly__faq-question::-webkit-details-marker {
  display: none;
}
details.page-dai-ly__faq-item summary.page-dai-ly__faq-question:hover {
  background: var(--divider, #1E3A2A);
}
.page-dai-ly__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main, #F2FFF6);
}
.page-dai-ly__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #11A84E);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-dai-ly__faq-item .page-dai-ly__faq-answer {
  padding: 0 20px 20px;
  background: var(--deep-green, #0A4B2C);
  border-radius: 0 0 5px 5px;
  color: var(--text-secondary, #A7D9B8);
}
.page-dai-ly__faq-answer p {
  margin: 0;
  padding: 0;
  color: var(--text-secondary, #A7D9B8);
}

.page-dai-ly__why-choose-us-section {
  background: var(--background, #08160F);
}

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

/* General container responsiveness */
.page-dai-ly__section,
.page-dai-ly__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Media queries for mobile devices */
@media (max-width: 768px) {
  .page-dai-ly {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-dai-ly__container {
    padding: 15px;
  }

  .page-dai-ly__section {
    padding: 40px 0;
  }

  .page-dai-ly__hero-section {
    min-height: auto;
    padding-top: 10px; /* Consistent small top padding */
  }

  .page-dai-ly__hero-image-wrapper {
    max-height: unset;
  }

  .page-dai-ly__hero-image {
    object-fit: contain !important; /* Force contain for mobile hero */
    aspect-ratio: unset !important;
    min-height: 250px;
  }

  .page-dai-ly__hero-content {
    padding: 20px 15px;
    margin-top: -40px;
  }

  .page-dai-ly__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

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

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

  .page-dai-ly__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 30px;
  }

  .page-dai-ly__text-block {
    font-size: 0.95rem;
  }

  .page-dai-ly__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-dai-ly__benefit-icon {
    max-width: 200px;
    min-width: 200px;
    min-height: 200px;
  }

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

  .page-dai-ly__benefit-description {
    font-size: 0.9rem;
  }

  .page-dai-ly__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-dai-ly__step-number {
    font-size: 2.5rem;
    top: 10px;
    right: 15px;
  }

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

  .page-dai-ly__step-description {
    font-size: 0.9rem;
  }

  .page-dai-ly__requirements-content,
  .page-dai-ly__guide-steps,
  .page-dai-ly__faq-list {
    margin-top: 30px;
  }

  .page-dai-ly__requirements-item {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-dai-ly__requirements-item::before {
    font-size: 1.1rem;
    margin-right: 10px;
  }

  .page-dai-ly__guide-step {
    padding: 20px;
  }

  .page-dai-ly__guide-step-title {
    font-size: 1.3rem;
  }

  .page-dai-ly__guide-step-description {
    font-size: 0.9rem;
  }

  details.page-dai-ly__faq-item summary.page-dai-ly__faq-question {
    padding: 15px;
  }
  .page-dai-ly__faq-qtext {
    font-size: 15px;
  }
  .page-dai-ly__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-dai-ly__faq-item .page-dai-ly__faq-answer {
    padding: 0 15px 15px;
  }

  /* Force responsive for all images and containers */
  .page-dai-ly img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-dai-ly__section,
  .page-dai-ly__card,
  .page-dai-ly__container,
  .page-dai-ly__hero-section,
  .page-dai-ly__benefits-section,
  .page-dai-ly__how-it-works-section,
  .page-dai-ly__requirements-section,
  .page-dai-ly__registration-guide-section,
  .page-dai-ly__faq-section,
  .page-dai-ly__why-choose-us-section,
  .page-dai-ly__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Button containers mobile adaptation */
  .page-dai-ly__cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-dai-ly__btn {
    margin: 0 auto; /* Center single button */
  }
}

/* Ensure no small icons */
.page-dai-ly__benefit-icon,
.page-dai-ly__hero-image {
  min-width: 200px;
  min-height: 200px;
}