/* style/da-ga.css */
.page-da-ga {
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: #0A0A0A; /* Ensure consistency with body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
  position: relative;
  overflow: hidden;
}

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

.page-da-ga__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #FFF6D6; /* Light text for dark background */
}

.page-da-ga__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Brand main color for H1 */
}

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

.page-da-ga__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* Buttons */
.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-da-ga__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-da-ga__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Brand main color */
  border: 2px solid #F2C14E;
}

.page-da-ga__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A; /* Dark text for bright background */
}

/* Section Titles & Descriptions */
.page-da-ga__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.3;
}

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

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

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

.page-da-ga__feature-item {
  text-align: center;
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
}

.page-da-ga__icon-box-media {
  width: 200px; /* Fixed size for square/round images */
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.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.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-da-ga__feature-text {
  font-size: 1rem;
  color: #FFF6D6;
}

/* Types Section */
.page-da-ga__types-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG for this section */
}

.page-da-ga__dark-bg {
  background-color: #111111;
  color: #FFF6D6;
}

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

.page-da-ga__card {
  background-color: #0A0A0A; /* Darker background for cards within a dark section */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  color: #FFF6D6;
  text-align: center;
}

.page-da-ga__card-img {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be responsive */
  object-fit: cover;
  display: block;
}

.page-da-ga__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #FFD36B; /* Accent color for card titles */
}

.page-da-ga__card-text {
  font-size: 1rem;
  padding: 0 20px 20px;
  color: #FFF6D6;
}

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

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

.page-da-ga__guide-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-da-ga__guide-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #F2C14E;
  color: #0A0A0A;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-da-ga__guide-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-da-ga__guide-text {
  font-size: 1rem;
  color: #FFF6D6;
}

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

/* Tips Section */
.page-da-ga__tips-section {
  padding: 80px 0;
  background-color: #111111;
}

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

.page-da-ga__tip-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  color: #FFF6D6;
  text-align: center;
}

.page-da-ga__tip-img {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be responsive */
  object-fit: cover;
  display: block;
}

.page-da-ga__tip-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #FFD36B;
}

.page-da-ga__tip-text {
  font-size: 1rem;
  padding: 0 20px 20px;
  color: #FFF6D6;
}

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

.page-da-ga__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

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

.page-da-ga__faq-item summary {
  list-style: none; /* Hide default marker */
}

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

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E;
  cursor: pointer;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

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

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

.page-da-ga__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 15px;
  color: #FFD36B;
}

.page-da-ga__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #FFF6D6;
  line-height: 1.7;
}

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

.page-da-ga__faq-answer a {
  color: #FFD36B;
  text-decoration: none;
}

.page-da-ga__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section Bottom */
.page-da-ga__cta-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG for this section */
  text-align: center;
}

.page-da-ga__cta-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-da-ga__cta-text-block {
  flex: 1 1 500px; /* Allow text block to grow */
  max-width: 700px;
  text-align: left;
}

.page-da-ga__cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.3;
}

.page-da-ga__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-da-ga__cta-button-bottom {
  margin-top: 20px;
}

.page-da-ga__cta-image {
  flex: 1 1 300px; /* Allow image to grow */
  max-width: 400px;
  text-align: center;
}

.page-da-ga__cta-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-container {
    flex-direction: column-reverse; /* Image above text on medium screens */
    text-align: center;
  }

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

  .page-da-ga__hero-cta-buttons {
    justify-content: center;
  }

  .page-da-ga__cta-content-wrapper {
    flex-direction: column;
  }
  .page-da-ga__cta-text-block {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Ensure small padding */
    padding-bottom: 40px;
  }
  .page-da-ga__hero-container {
    padding: 20px 15px;
    gap: 20px;
  }
  .page-da-ga__hero-title {
    font-size: 2.2rem;
  }
  .page-da-ga__hero-description {
    font-size: 1rem;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Buttons */
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary,
  .page-da-ga a[class*="button"],
  .page-da-ga 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-da-ga__hero-cta-buttons,
  .page-da-ga__cta-center,
  .page-da-ga__cta-buttons-bottom,
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-da-ga__hero-cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Section Titles & Descriptions */
  .page-da-ga__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-da-ga__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* Intro Section - Module 1 */
  .page-da-ga__intro-section,
  .page-da-ga__types-section,
  .page-da-ga__guide-section,
  .page-da-ga__tips-section,
  .page-da-ga__faq-section,
  .page-da-ga__cta-section {
    padding: 40px 0; /* Reduced padding for mobile */
  }

  .page-da-ga__features-grid,
  .page-da-ga__grid-2-cols,
  .page-da-ga__guide-steps,
  .page-da-ga__tips-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Module 1 square images */
  .page-da-ga__icon-box-media {
    width: 150px; /* Still square, but smaller */
    height: 150px;
    border-width: 3px;
  }

  /* General Images */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-da-ga__card-img,
  .page-da-ga__tip-img {
    height: 200px; /* Smaller fixed height for mobile cards */
  }

  /* Containers for images */
  .page-da-ga__container,
  .page-da-ga__card,
  .page-da-ga__feature-item,
  .page-da-ga__guide-item,
  .page-da-ga__tip-card,
  .page-da-ga__faq-item,
  .page-da-ga__cta-content-wrapper,
  .page-da-ga__cta-text-block,
  .page-da-ga__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-da-ga__card,
  .page-da-ga__feature-item,
  .page-da-ga__guide-item,
  .page-da-ga__tip-card,
  .page-da-ga__faq-item {
    padding: 20px;
  }

  /* FAQ */
  .page-da-ga__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-da-ga__faq-toggle {
    font-size: 1.5rem;
  }
  .page-da-ga__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* CTA Bottom */
  .page-da-ga__cta-title {
    font-size: 1.8rem;
  }
  .page-da-ga__cta-description {
    font-size: 1rem;
  }
}