.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
}

.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding for fixed header */
  padding-bottom: 60px;
  background-color: #f0f8f0; /* Light green tint for hero background */
  color: #333333;
}

.page-da-ga__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px;
}

.page-da-ga__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-da-ga__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #017439; /* Brand primary color for H1 */
  max-width: 600px; /* Constrain H1 width */
}

.page-da-ga__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-da-ga__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-da-ga__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-da-ga__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-da-ga__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-da-ga__btn-secondary:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
}

.page-da-ga__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-da-ga__section-title {
  font-size: 2.2em;
  color: #017439;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.page-da-ga__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444444;
  text-align: justify;
}

.page-da-ga__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-da-ga__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-da-ga__intro-section {
  padding: 60px 0;
}

.page-da-ga__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-da-ga__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-da-ga__feature-item:hover {
  transform: translateY(-5px);
}

.page-da-ga__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #017439;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f2e0;
}

.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-da-ga__feature-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-da-ga__feature-description {
  font-size: 0.95em;
  color: #666666;
}

.page-da-ga__bet-types-section {
  padding: 60px 0;
}

.page-da-ga__bet-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-da-ga__bet-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-da-ga__bet-item-title {
  font-size: 1.3em;
  color: #FFFF00; /* Yellow for titles in dark section */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-da-ga__bet-item-description {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-da-ga__guide-section {
  padding: 60px 0;
}

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

.page-da-ga__guide-step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-da-ga__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #C30808; /* Red for step numbers */
  margin-bottom: 15px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #ffe0e0;
}

.page-da-ga__step-title {
  font-size: 1.3em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-da-ga__step-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
}

.page-da-ga__btn-text-link {
  color: #017439;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9em;
}

.page-da-ga__btn-text-link:hover {
  color: #005a2d;
}

.page-da-ga__guide-image-wrapper,
.page-da-ga__tips-image-wrapper,
.page-da-ga__promo-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-da-ga__guide-image,
.page-da-ga__tips-image,
.page-da-ga__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-da-ga__tips-section {
  padding: 60px 0;
}

.page-da-ga__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-da-ga__tip-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-da-ga__tip-title {
  font-size: 1.3em;
  color: #FFFF00;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-da-ga__tip-description {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-da-ga__promo-section {
  padding: 60px 0;
}

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

.page-da-ga__promo-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-da-ga__promo-card:hover {
  transform: translateY(-5px);
}

.page-da-ga__promo-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-da-ga__promo-description {
  font-size: 0.95em;
  color: #666666;
}

.page-da-ga__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-da-ga__faq-section {
  padding: 60px 0;
}

.page-da-ga__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #017439;
  cursor: pointer;
  background-color: #eaf7ea;
  border-bottom: 1px solid #e0e0e0;
}

.page-da-ga__faq-question:hover {
  background-color: #dcf0dc;
}

.page-da-ga__faq-qtext {
  flex-grow: 1;
}

.page-da-ga__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #C30808;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-question {
  border-bottom: 1px solid #c0c0c0;
}

.page-da-ga__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-da-ga__contact-cta {
  padding: 60px 0;
  text-align: center;
}

.page-da-ga__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-da-ga__contact-cta .page-da-ga__section-title {
  color: #ffffff;
  margin-bottom: 15px;
}

.page-da-ga__contact-cta .page-da-ga__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin-bottom: 30px;
}

/* Universal image responsiveness */
.page-da-ga img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-da-ga {
    font-size: 15px;
  }

  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
  }

  .page-da-ga__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }

  .page-da-ga__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

  .page-da-ga__main-title {
    font-size: 2em; /* Smaller H1 on mobile */
    max-width: 100%;
  }

  .page-da-ga__hero-description {
    font-size: 1em;
  }

  .page-da-ga__hero-image {
    flex: 1 1 100%;
  }

  .page-da-ga__hero-side-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-da-ga__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-da-ga__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-da-ga__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-da-ga__text-block {
    font-size: 0.95em;
  }

  .page-da-ga__intro-section,
  .page-da-ga__bet-types-section,
  .page-da-ga__guide-section,
  .page-da-ga__tips-section,
  .page-da-ga__promo-section,
  .page-da-ga__faq-section,
  .page-da-ga__contact-cta {
    padding: 40px 0;
  }

  .page-da-ga__features-grid,
  .page-da-ga__bet-list,
  .page-da-ga__guide-steps,
  .page-da-ga__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-da-ga__feature-item,
  .page-da-ga__bet-item,
  .page-da-ga__guide-step-item,
  .page-da-ga__promo-card,
  .page-da-ga__tip-item {
    padding: 20px;
  }

  .page-da-ga__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 15px;
    border-width: 3px;
  }

  .page-da-ga__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
  }

  .page-da-ga__feature-title,
  .page-da-ga__bet-item-title,
  .page-da-ga__step-title,
  .page-da-ga__tip-title,
  .page-da-ga__promo-title {
    font-size: 1.2em;
  }

  .page-da-ga__step-number {
    font-size: 2em;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .page-da-ga__guide-image,
  .page-da-ga__tips-image,
  .page-da-ga__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-da-ga__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-da-ga__faq-toggle {
    font-size: 1.2em;
  }

  .page-da-ga__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9em;
  }

  /* General image and container rules for mobile */
  .page-da-ga img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }

  .page-da-ga__section,
  .page-da-ga__card,
  .page-da-ga__container,
  .page-da-ga__cta-buttons,
  .page-da-ga__button-group,
  .page-da-ga__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  .page-da-ga__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}