.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background: #ffffff; /* Default background, matches shared.css --secondary-color */
  line-height: 1.6;
}

.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
  padding-bottom: 60px;
  background-color: #f5f5f5; /* Light background for hero section */
}

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

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

.page-da-ga__hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  color: #26A9E0; /* Brand color for H1 */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-da-ga__hero-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-da-ga__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  text-align: center;
  box-sizing: border-box;
}

.page-da-ga__cta-button--primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-da-ga__cta-button--primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-da-ga__cta-button--secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-da-ga__cta-button--secondary:hover {
  background-color: #e0f2f7;
  transform: translateY(-2px);
}

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

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

/* Intro Section (Module 1 equivalent) */
.page-da-ga__intro-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
}

.page-da-ga__intro-section h2 {
  font-size: 2.5rem;
  color: #26A9E0;
  margin-bottom: 60px;
  font-weight: bold;
}

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

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

.page-da-ga__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-da-ga__icon-box-media {
  width: 160px; /* Smaller for desktop to fit */
  height: 160px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image itself is circular */
  display: block;
}

.page-da-ga__feature-item h3 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-da-ga__feature-item p {
  font-size: 1rem;
  color: #666666;
}

/* Main Content Section */
.page-da-ga__content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-da-ga__content-section h2 {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

.page-da-ga__content-section h3 {
  font-size: 1.8rem;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-da-ga__content-section p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-da-ga__image-block {
  margin: 40px 0;
  text-align: center;
}

.page-da-ga__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure block display for proper margin */
  margin: 0 auto; /* Center the image */
}

.page-da-ga__content-section ul,
.page-da-ga__content-section ol {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-da-ga__content-section ul li,
.page-da-ga__content-section ol li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444444;
}

.page-da-ga__content-section ul li::marker {
  color: #26A9E0;
  font-weight: bold;
}
.page-da-ga__content-section ol li::marker {
  color: #26A9E0;
  font-weight: bold;
}

/* CTA Section */
.page-da-ga__cta-section {
  background-color: #26A9E0;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-da-ga__cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: bold;
  color: #ffffff;
}

.page-da-ga__cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__cta-section .page-da-ga__cta-buttons {
  justify-content: center;
}

.page-da-ga__cta-section .page-da-ga__cta-button--primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  border-color: #EA7C07;
  color: #ffffff;
}

.page-da-ga__cta-section .page-da-ga__cta-button--primary:hover {
  background-color: #d36e06;
  border-color: #d36e06;
}

.page-da-ga__cta-section .page-da-ga__cta-button--secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-da-ga__cta-section .page-da-ga__cta-button--secondary:hover {
  background-color: #e0f2f7;
  color: #26A9E0;
}

/* FAQ Section */
.page-da-ga__faq-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.page-da-ga__faq-section h2 {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-da-ga__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-da-ga__faq-qtext {
  flex-grow: 1;
  color: #26A9E0; /* FAQ question text color */
}

.page-da-ga__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

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

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

  .page-da-ga__hero-content {
    text-align: center;
  }

  .page-da-ga__hero-buttons {
    justify-content: center;
  }
  .page-da-ga__intro-section h2,
  .page-da-ga__content-section h2,
  .page-da-ga__cta-section h2,
  .page-da-ga__faq-section h2 {
    font-size: 2.2rem;
  }
  .page-da-ga__content-section h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  /* HERO Section - Mobile */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-da-ga__hero-container {
    padding: 20px 15px;
    gap: 20px;
  }

  .page-da-ga__hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important; /* Adjust H1 size for mobile */
    margin-bottom: 15px;
  }

  .page-da-ga__hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-da-ga__hero-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    width: 100% !important; /* Ensure container takes full width */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important; /* Add padding to button container */
  }

  .page-da-ga__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section (Module 1 equivalent) - Mobile */
  .page-da-ga__intro-section {
    padding: 50px 15px;
  }

  .page-da-ga__intro-section h2 {
    font-size: 2rem !important;
    margin-bottom: 40px;
  }

  .page-da-ga__features-grid {
    grid-template-columns: 1fr !important; /* Single column layout for features */
    gap: 20px;
  }

  .page-da-ga__icon-box-media {
    width: 200px !important; /* Maintain square shape for mobile */
    height: 200px !important;
    border-width: 3px;
    margin-bottom: 20px;
  }

  .page-da-ga__feature-item h3 {
    font-size: 1.3rem !important;
  }

  .page-da-ga__feature-item p {
    font-size: 0.95rem !important;
  }

  /* Main Content Section - Mobile */
  .page-da-ga__content-section {
    padding: 50px 15px;
  }

  .page-da-ga__content-section h2 {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }

  .page-da-ga__content-section h3 {
    font-size: 1.5rem !important;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-da-ga__content-area p,
  .page-da-ga__content-section p,
  .page-da-ga__content-section ul li,
  .page-da-ga__content-section ol li {
    font-size: 0.95rem !important;
    margin-bottom: 15px;
  }

  .page-da-ga__image-block {
    margin: 30px 0;
  }

  .page-da-ga__image-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* CTA Section - Mobile */
  .page-da-ga__cta-section {
    padding: 50px 15px;
  }

  .page-da-ga__cta-section h2 {
    font-size: 2rem !important;
    margin-bottom: 20px;
  }

  .page-da-ga__cta-section p {
    font-size: 1rem !important;
    margin-bottom: 30px;
  }

  .page-da-ga__cta-section .page-da-ga__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

  /* FAQ Section - Mobile */
  .page-da-ga__faq-section {
    padding: 50px 15px;
  }

  .page-da-ga__faq-section h2 {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }

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

  .page-da-ga__faq-toggle {
    font-size: 1.5rem !important;
  }

  .page-da-ga__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.95rem !important;
  }

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

  .page-da-ga__section,
  .page-da-ga__card,
  .page-da-ga__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}