.page-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-da-ga__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-da-ga__section-title {
  font-size: 2.5em;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

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

/* HERO Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding as body has header offset */
  padding-bottom: 60px;
  background-color: #F4F7FB;
}

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

.page-da-ga__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  padding-right: 20px;
}

.page-da-ga__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #2F6BFF; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.page-da-ga__hero-description {
  font-size: 1.2em;
  color: #1F2D3D;
  margin-bottom: 30px;
}

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

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

.page-da-ga__hero-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-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-da-ga__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-da-ga__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-da-ga__btn-secondary:hover {
  background-color: #F4F7FB;
  color: #1e4fcc;
  border-color: #1e4fcc;
}

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

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

.page-da-ga__card {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1F2D3D;
}

.page-da-ga__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-da-ga__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #A5C4FF; /* Glow */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

/* Types Section */
.page-da-ga__types-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-da-ga__type-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.page-da-ga__type-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.page-da-ga__type-card h3 {
  font-size: 1.4em;
  color: #000000;
  margin: 20px 20px 10px;
  font-weight: 700;
}

.page-da-ga__type-card p {
  font-size: 1em;
  color: #1F2D3D;
  margin: 0 20px 20px;
}

/* Guide Section */
.page-da-ga__guide-section {
  background-color: #2F6BFF; /* Main color */
  color: #ffffff;
  padding: 60px 0;
}

.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(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__guide-step {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-da-ga__step-number {
  font-size: 2.5em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 15px;
  left: 15px;
  line-height: 1;
}

.page-da-ga__step-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-da-ga__step-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-da-ga__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6FA3FF; /* Auxiliary color */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-da-ga__btn-link:hover {
  background-color: #4A8BFF;
}

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

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

.page-da-ga__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-da-ga__tips-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #1F2D3D;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-da-ga__tips-item strong {
  color: #2F6BFF;
}

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

/* Promo Section */
.page-da-ga__promo-section {
  background-color: #2F6BFF; /* Main color */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

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

.page-da-ga__promo-section .page-da-ga__btn-primary {
  margin-top: 30px;
}

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

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

.page-da-ga__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  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;
  background-color: #FFFFFF;
  color: #000000; /* Custom Color_1776249996415 */
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid #D6E2FF;
}

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

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

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

.page-da-ga__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2F6BFF;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
  transform: rotate(45deg);
}

.page-da-ga__faq-answer {
  padding: 20px 25px;
  background-color: #fcfdff;
  color: #1F2D3D;
  font-size: 1em;
  border-top: none;
}

/* General Image Styles */
.page-da-ga img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-content {
    padding-right: 0;
  }
  .page-da-ga__hero-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-da-ga__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-da-ga__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 25px;
  }
  .page-da-ga__hero-content,
  .page-da-ga__hero-image-wrapper {
    flex: 1 1 100%;
    width: 100%;
    min-width: unset;
    padding-right: 0;
  }
  .page-da-ga__hero-title {
    font-size: clamp(2em, 8vw, 2.8em);
    text-align: center;
  }
  .page-da-ga__hero-description {
    font-size: 1em;
    text-align: center;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 0 auto;
  }
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary {
    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;
  }

  /* Intro Section - Feature Cards */
  .page-da-ga__intro-section,
  .page-da-ga__types-section,
  .page-da-ga__guide-section,
  .page-da-ga__tips-section,
  .page-da-ga__promo-section,
  .page-da-ga__faq-section {
    padding: 40px 0;
  }
  .page-da-ga__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-da-ga__section-title {
    font-size: 1.8em;
  }
  .page-da-ga__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-da-ga__feature-cards,
  .page-da-ga__type-grid,
  .page-da-ga__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .page-da-ga__feature-title {
    font-size: 1.3em;
  }

  /* Type Cards */
  .page-da-ga__type-card h3 {
    font-size: 1.2em;
  }

  /* Guide Section */
  .page-da-ga__step-title {
    font-size: 1.2em;
  }
  .page-da-ga__btn-link {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Tips Section */
  .page-da-ga__tips-item {
    font-size: 0.95em;
    padding: 15px;
  }

  /* FAQ Section */
  .page-da-ga__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-da-ga__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Universal Image/Container Mobile Adaptations */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-da-ga__card,
  .page-da-ga__section,
  .page-da-ga__container,
  .page-da-ga__feature-cards,
  .page-da-ga__type-grid,
  .page-da-ga__guide-steps,
  .page-da-ga__tips-list,
  .page-da-ga__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}