.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #F5F7FA;
}

.page-da-ga__section {
  padding: 40px 0;
}

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

.page-da-ga__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-da-ga__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #E53935;
  line-height: 1.2;
}

.page-da-ga__section-title--light {
  color: #ffffff;
}

.page-da-ga__text-block {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  color: #333333;
}

.page-da-ga__text-block strong {
  color: #E53935;
}

.page-da-ga__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  background-color: #f5f7fa;
}

.page-da-ga__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height on desktop */
  overflow: hidden;
}

.page-da-ga__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-da-ga__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  background-color: #ffffff;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-da-ga__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #E53935;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.page-da-ga__hero-description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary,
.page-da-ga__btn-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

.page-da-ga__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-da-ga__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.page-da-ga__btn-link {
  background: transparent;
  color: #E53935;
  border: 1px solid #E0E0E0;
  padding: 10px 20px;
  font-size: 14px;
}

.page-da-ga__btn-link:hover {
  background: #E53935;
  color: #ffffff;
}

.page-da-ga__dark-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-da-ga__dark-section .page-da-ga__text-block {
  color: #ffffff;
}

.page-da-ga__grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-da-ga__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-da-ga__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-da-ga__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E0E0E0;
  color: #333333;
}

.page-da-ga__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
}

.page-da-ga__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-da-ga__card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  text-align: justify;
}

.page-da-ga__step-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-da-ga__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.page-da-ga__step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #FF5A4F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.page-da-ga__step-content {
  text-align: left;
}

.page-da-ga__step-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
}

.page-da-ga__step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
}

.page-da-ga__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-da-ga__benefit-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E0E0E0;
  color: #333333;
}

.page-da-ga__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
}

.page-da-ga__benefit-title {
  font-size: 22px;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-da-ga__benefit-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  text-align: justify;
}

.page-da-ga__article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
}

.page-da-ga__article-body p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #ffffff;
  text-align: justify;
}

.page-da-ga__article-body h3 {
  font-size: 24px;
  color: #FF5A4F;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-da-ga__app-content {
  flex: 1;
  text-align: left;
}

.page-da-ga__app-image-wrapper {
  flex-shrink: 0;
  max-width: 400px;
}

.page-da-ga__app-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-da-ga__app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Styles */
details.page-da-ga__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  color: #333333;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question::-webkit-details-marker {
  display: none;
}
details.page-da-ga__faq-item summary.page-da-ga__faq-question:hover {
  background: #f5f5f5;
}
.page-da-ga__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-da-ga__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-da-ga__faq-item .page-da-ga__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}
details.page-da-ga__faq-item .page-da-ga__faq-answer p {
  margin-bottom: 0;
  line-height: 1.7;
  color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-da-ga__hero-content {
    margin-top: -60px;
    padding: 30px;
  }
  .page-da-ga__main-title {
    font-size: clamp(26px, 3.5vw, 40px);
  }
  .page-da-ga__hero-description {
    font-size: 16px;
  }
  .page-da-ga__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-da-ga__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .page-da-ga__app-image-wrapper {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-da-ga__hero-section {
    padding-top: 10px !important;
  }
  .page-da-ga__hero-image-wrapper {
    max-height: 300px;
  }
  .page-da-ga__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-da-ga__hero-content {
    margin-top: -40px;
    padding: 20px;
  }
  .page-da-ga__main-title {
    font-size: clamp(24px, 7vw, 36px) !important;
  }
  .page-da-ga__hero-description {
    font-size: 15px;
  }
  .page-da-ga__hero-buttons,
  .page-da-ga__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .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;
    padding-right: 15px;
  }
  .page-da-ga__section-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .page-da-ga__text-block {
    font-size: 15px;
    padding: 0 15px;
  }
  .page-da-ga__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 15px;
  }
  .page-da-ga__card {
    padding: 20px;
  }
  .page-da-ga__card-title {
    font-size: 20px;
  }
  .page-da-ga__card-description {
    font-size: 14px;
  }
  .page-da-ga__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }
  .page-da-ga__step-content {
    text-align: center;
  }
  .page-da-ga__step-title {
    font-size: 18px;
    margin-top: 10px;
  }
  .page-da-ga__step-content p {
    font-size: 15px;
  }
  .page-da-ga__article-body {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-da-ga__article-body h3 {
    font-size: 20px;
  }
  .page-da-ga__article-body p {
    font-size: 15px;
  }
  .page-da-ga__container--flex {
    flex-direction: column;
  }
  .page-da-ga__app-content {
    text-align: center;
  }
  .page-da-ga__app-buttons {
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-da-ga__app-image-wrapper {
    max-width: 100%;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-da-ga__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-da-ga img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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;
  }
  details.page-da-ga__faq-item summary.page-da-ga__faq-question { padding: 15px; }
  .page-da-ga__faq-qtext { font-size: 15px; }
  details.page-da-ga__faq-item .page-da-ga__faq-answer { padding: 0 15px 15px; }
}