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

/* General container styles */
.page-da-ga__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Section Titles and Descriptions */
.page-da-ga__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* Call to Action Buttons */
.page-da-ga__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-da-ga__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

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

.page-da-ga__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
}

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

.page-da-ga__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* HERO Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 60px;
  background-color: #f8f8f8;
  color: #333333;
}

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

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

.page-da-ga__hero-title {
  font-size: 3.2em;
  font-weight: 800;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 600px;
}

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

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

.page-da-ga__hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: block;
}

/* Intro Section */
.page-da-ga__intro-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

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

.page-da-ga__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.page-da-ga__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.page-da-ga__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-da-ga__feature-text {
  color: #666666;
  font-size: 1em;
}

/* Guide Section */
.page-da-ga__guide-section {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
}

.page-da-ga__guide-section .page-da-ga__section-title,
.page-da-ga__guide-section .page-da-ga__section-description {
  color: #ffffff;
}

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

.page-da-ga__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.page-da-ga__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFFF00; /* Custom color for step numbers */
  margin-bottom: 15px;
}

.page-da-ga__step-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-da-ga__step-text {
  color: #e0e0e0;
  font-size: 1em;
}

/* Promo Section */
.page-da-ga__promo-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #333333;
}

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

.page-da-ga__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.page-da-ga__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-da-ga__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-da-ga__promo-text {
  color: #666666;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-da-ga__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-da-ga__faq-list {
  max-width: 900px;
  margin: 50px auto 0 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.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #e6f4ea;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-da-ga__faq-question::-webkit-details-marker {
  display: none;
}

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

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

.page-da-ga__faq-item[open] .page-da-ga__faq-question {
  background-color: #dcf2e1;
  border-bottom-color: transparent;
}

.page-da-ga__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #fcfcfc;
}

.page-da-ga__faq-answer p {
  margin-bottom: 10px;
}

/* Contact CTA Section */
.page-da-ga__contact-cta {
  padding: 80px 0;
  background-color: #017439;
  color: #ffffff;
  text-align: center;
}

.page-da-ga__contact-cta .page-da-ga__section-title,
.page-da-ga__contact-cta .page-da-ga__section-description {
  color: #ffffff;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-da-ga__hero-text-block,
  .page-da-ga__hero-image-block {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-da-ga__hero-title {
    font-size: 2.8em;
    margin-left: auto;
    margin-right: auto;
  }

  .page-da-ga__hero-description {
    font-size: 1.1em;
    margin-left: auto;
    margin-right: auto;
  }

  .page-da-ga__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-da-ga__cta-button {
    width: 100%;
  }
}

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

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

  .page-da-ga__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Small top padding, assuming body handles header offset */
    padding-bottom: 40px;
  }

  .page-da-ga__hero-title {
    font-size: 2.2em !important;
    margin-bottom: 15px;
  }

  .page-da-ga__hero-description {
    font-size: 1em !important;
    margin-bottom: 25px;
  }

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

  .page-da-ga__hero-cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  /* Module 1: Intro Section (features grid with circular images) */
  .page-da-ga__intro-section {
    padding: 60px 0;
  }

  .page-da-ga__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .page-da-ga__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

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

  .page-da-ga__feature-title {
    font-size: 1.3em;
  }

  /* Guide Section (steps) */
  .page-da-ga__guide-section {
    padding: 60px 0;
  }

  .page-da-ga__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .page-da-ga__step-number {
    font-size: 2em;
  }

  .page-da-ga__step-title {
    font-size: 1.4em;
  }

  /* Promo Section (cards) */
  .page-da-ga__promo-section {
    padding: 60px 0;
  }

  .page-da-ga__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .page-da-ga__promo-image {
    height: 180px;
  }

  .page-da-ga__promo-title {
    font-size: 1.3em;
  }

  /* FAQ Section */
  .page-da-ga__faq-section {
    padding: 60px 0;
  }

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

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

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

  .page-da-ga__faq-answer {
    padding: 15px 20px;
  }

  /* Contact CTA Section */
  .page-da-ga__contact-cta {
    padding: 60px 0;
  }

  .page-da-ga__cta-button {
    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-da-ga__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    flex-direction: column !important; /* Ensure buttons stack vertically */
    gap: 10px;
  }

  /* General image and container responsiveness */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-da-ga__container,
  .page-da-ga__hero-content-wrapper,
  .page-da-ga__features-grid,
  .page-da-ga__guide-steps,
  .page-da-ga__promo-grid,
  .page-da-ga__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Dark background color for specific sections */
.page-da-ga__dark-section {
  background-color: #017439;
  color: #ffffff;
}

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

/* Custom color for login/register buttons (if they were separate from primary/secondary) */
/* .page-da-ga__btn-register { background-color: #C30808; color: #FFFF00; border-color: #C30808; } */
/* .page-da-ga__btn-login { background-color: #C30808; color: #FFFF00; border-color: #C30808; } */