/* style/da-ga.css */

/* General styles for the page-da-ga scope */
.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: 36px;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-da-ga__section-description {
  font-size: 18px;
  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 handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #F4F7FB 0%, #D6E2FF 100%); /* Light gradient background */
}

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

.page-da-ga__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #1F2D3D;
}

.page-da-ga__hero-title {
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.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 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Buttons */
.page-da-ga__btn-primary,
.page-da-ga__btn-secondary,
.page-da-ga__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  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 15px rgba(47, 107, 255, 0.4);
}

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

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

.page-da-ga__btn-secondary:hover {
  background: #F4F7FB;
  color: #1A4DCC;
  border-color: #1A4DCC;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-da-ga__btn-link {
  background: transparent;
  color: #2F6BFF;
  border: 2px solid transparent;
  padding: 8px 0;
  font-size: 16px;
}

.page-da-ga__btn-link:hover {
  color: #1A4DCC;
  text-decoration: underline;
}

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

.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: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-da-ga__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF; /* Border */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.1); /* Glow */
}

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

.page-da-ga__feature-title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-da-ga__type-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-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-da-ga__card:hover {
  transform: translateY(-10px);
}

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

.page-da-ga__card-title {
  font-size: 22px;
  color: #000000;
  padding: 20px 20px 10px;
  font-weight: bold;
}

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

/* Benefits Section */
.page-da-ga__benefits-section {
  background-color: #2F6BFF; /* Main Color */
  padding: 60px 0;
}

.page-da-ga__dark-section .page-da-ga__section-title,
.page-da-ga__dark-section .page-da-ga__section-description {
  color: #FFFFFF;
}

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

.page-da-ga__benefit-item {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white */
  padding: 30px;
  border-radius: 12px;
  color: #FFFFFF;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-da-ga__benefit-title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-da-ga__benefit-text {
  font-size: 16px;
}

/* Guide Section */
.page-da-ga__guide-section {
  background-color: #F4F7FB; /* Background */
  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: #FFFFFF; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

.page-da-ga__guide-image {
  max-width: 100%;
  height: 200px; /* Fixed height for guide images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-da-ga__guide-step-title {
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-da-ga__guide-step-text {
  font-size: 16px;
  color: #1F2D3D;
  margin-bottom: 20px;
}

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

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

.page-da-ga__tips-list li {
  background-color: #FFFFFF; /* Card BG */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #2F6BFF; /* Main Color accent */
  font-size: 17px;
  color: #1F2D3D;
}

.page-da-ga__tips-list li strong {
  color: #000000;
}

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

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

.page-da-ga__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #F4F7FB; /* Lighter background for summary */
  border-bottom: 1px solid #D6E2FF;
  list-style: none; /* For details/summary */
}

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

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

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

.page-da-ga__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-da-ga__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #1F2D3D;
  border-top: 1px solid #D6E2FF; /* Remove if summary has bottom border */
}

.page-da-ga__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-da-ga__conclusion-section {
  background-color: #2F6BFF; /* Main Color */
  padding: 80px 0;
  text-align: center;
}

.page-da-ga__conclusion-section .page-da-ga__section-title,
.page-da-ga__conclusion-section .page-da-ga__section-description {
  color: #FFFFFF;
}

.page-da-ga__conclusion-section .page-da-ga__cta-buttons {
  justify-content: center;
  margin-top: 40px;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-title {
    font-size: 40px;
  }
  .page-da-ga__section-title {
    font-size: 30px;
  }
  .page-da-ga__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-da-ga__hero-content {
    order: 2; /* Content below image on smaller screens */
  }
  .page-da-ga__hero-image {
    order: 1;
  }
  .page-da-ga__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* HERO 双栏 */
  .page-da-ga__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
  }
  .page-da-ga__hero-container {
    padding: 30px 15px;
    flex-direction: column; /* Ensure column layout */
    gap: 30px;
  }
  .page-da-ga__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-da-ga__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-da-ga__hero-cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Add horizontal padding to buttons container */
  }

  /* 按钮与按钮容器 */
  .page-da-ga__btn-primary,
  .page-da-ga__btn-secondary,
  .page-da-ga__btn-link,
  .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; /* Ensure padding inside button */
    padding-right: 15px; /* Ensure padding inside button */
  }
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-da-ga__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure buttons stack */
  }

  /* 模块1 三栏正圆图 */
  .page-da-ga__icon-box-media {
    width: 180px; /* Smaller square */
    height: 180px; /* Smaller square */
    border-width: 3px;
    box-shadow: 0 0 0 6px rgba(47, 107, 255, 0.1);
  }
  .page-da-ga__features-grid {
    grid-template-columns: 1fr; /* Single column */
    padding: 0 15px;
  }
  .page-da-ga__feature-item {
    padding: 25px;
  }

  /* 通用图片与容器 */
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-da-ga__container,
  .page-da-ga__section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-da-ga__card-image {
    height: 180px; /* Adjust card image height for mobile */
  }
  .page-da-ga__guide-image {
    height: 160px; /* Adjust guide image height for mobile */
  }

  /* 教程长文 / 促销 / 信任 / FAQ / intro 排版 */
  .page-da-ga__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-da-ga__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-da-ga__type-cards,
  .page-da-ga__benefits-grid,
  .page-da-ga__guide-steps {
    grid-template-columns: 1fr; /* Single column for all grids */
    padding: 0 15px;
  }
  .page-da-ga__card,
  .page-da-ga__benefit-item,
  .page-da-ga__guide-step-item,
  .page-da-ga__tips-list li,
  .page-da-ga__faq-item {
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .page-da-ga__card-title,
  .page-da-ga__benefit-title,
  .page-da-ga__guide-step-title,
  .page-da-ga__feature-title {
    font-size: 20px;
  }
  .page-da-ga__card-text,
  .page-da-ga__benefit-text,
  .page-da-ga__guide-step-text,
  .page-da-ga__feature-text,
  .page-da-ga__tips-list li,
  .page-da-ga__faq-question,
  .page-da-ga__faq-answer {
    font-size: 15px;
  }
  .page-da-ga__faq-question {
    padding: 15px 20px;
  }
  .page-da-ga__faq-answer {
    padding: 15px 20px;
  }
  .page-da-ga__tips-list {
    padding: 0 15px;
  }
  .page-da-ga__conclusion-section {
    padding: 60px 0;
  }
}