.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-da-ga .section-padding {
  padding: 60px 0;
}

.page-da-ga .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-da-ga .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.page-da-ga .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-da-ga .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Hero Section */
.page-da-ga-hero {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-da-ga-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-da-ga-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-da-ga-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-da-ga-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-da-ga-hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-da-ga .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-da-ga .cta-button:hover {
  background: #e6b000; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-da-ga .cta-button.secondary {
  background: var(--primary-color);
  color: #ffffff;
}

.page-da-ga .cta-button.secondary:hover {
  background: #0056b3; /* Slightly darker blue */
}

/* Intro Section */
.page-da-ga-intro p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}

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

.page-da-ga-intro .intro-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga-intro .intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-da-ga-intro .intro-card .card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-da-ga-intro .intro-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-da-ga-intro .intro-card p {
  font-size: 16px;
  color: #555;
  text-align: left;
}

/* Why Choose Section */
.page-da-ga .bg-light-blue {
  background-color: #f0f8ff; /* A very light blue for contrast */
}

.page-da-ga .bg-dark-blue {
  background-color: var(--primary-color);
  color: #fff;
}

.page-da-ga .bg-dark-blue .section-title {
  color: #fff;
}

.page-da-ga-why-choose .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-da-ga-why-choose .feature-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-da-ga-why-choose .feature-item:hover {
  transform: translateY(-5px);
}

.page-da-ga-why-choose .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-da-ga-why-choose .feature-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-da-ga-why-choose .feature-item p {
  font-size: 16px;
  color: #555;
}

.page-da-ga-why-choose .action-center {
  text-align: center;
  margin-top: 40px;
}

.page-da-ga-why-choose .action-center p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #333;
}

/* Guide Section */
.page-da-ga-guide p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.page-da-ga-guide .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-da-ga-guide .step-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
}

.page-da-ga-guide .step-item .step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-da-ga-guide .step-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-da-ga-guide .step-item p {
  font-size: 16px;
  color: #555;
  text-align: left;
  margin-bottom: 20px;
}

.page-da-ga-guide .link-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-da-ga-guide .link-button:hover {
  background: #e6b000;
}

/* Types Section */
.page-da-ga-types p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

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

.page-da-ga-types .type-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga-types .type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-da-ga-types .type-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-da-ga-types .type-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
}

.page-da-ga-types .type-card p {
  font-size: 16px;
  color: #555;
  padding: 0 20px 20px;
  text-align: left;
}

/* Tips Section */
.page-da-ga-tips p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.page-da-ga-tips .tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-da-ga-tips .tips-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.page-da-ga-tips .tips-list li:hover {
  transform: translateX(10px);
}

.page-da-ga-tips .tips-list .list-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-da-ga-tips .tips-list h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-da-ga-tips .tips-list p {
  font-size: 16px;
  color: #555;
  text-align: left;
  margin-bottom: 0;
}

/* Promotions Section */
.page-da-ga-promotions p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.page-da-ga-promotions .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-da-ga-promotions .promo-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga-promotions .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-da-ga-promotions .promo-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-da-ga-promotions .promo-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
}

.page-da-ga-promotions .promo-card p {
  font-size: 16px;
  color: #555;
  padding: 0 20px 20px;
  text-align: center;
}

.page-da-ga-promotions .promo-card a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-da-ga-promotions .promo-card a:hover {
  background: #e6b000;
}

/* FAQ Section */
.page-da-ga-faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-da-ga-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-da-ga-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-da-ga-faq .faq-question:hover {
  background: #f5f5f5;
}

.page-da-ga-faq .faq-question h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
}

.page-da-ga-faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-da-ga-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-da-ga-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555;
}

.page-da-ga-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-da-ga-faq .faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* CTA Bottom Section */
.page-da-ga-cta-bottom {
  text-align: center;
  color: #fff;
}

.page-da-ga-cta-bottom h2 {
  color: #fff;
}

.page-da-ga-cta-bottom p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
}

.page-da-ga-cta-bottom a {
  color: #fff;
  text-decoration: underline;
}

.page-da-ga-cta-bottom a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-da-ga-hero h1 {
    font-size: 38px;
  }

  .page-da-ga-hero p {
    font-size: 18px;
  }

  .page-da-ga .section-title {
    font-size: 30px;
  }

  .page-da-ga-intro .intro-card .card-image,
  .page-da-ga-types .type-card .card-image,
  .page-da-ga-promotions .promo-card .card-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-da-ga-hero {
    height: 400px;
  }

  .page-da-ga-hero h1 {
    font-size: 32px;
  }

  .page-da-ga-hero p {
    font-size: 16px;
  }

  .page-da-ga .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

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

  .page-da-ga .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-da-ga-intro .intro-grid,
  .page-da-ga-why-choose .features-grid,
  .page-da-ga-guide .guide-steps,
  .page-da-ga-types .types-grid,
  .page-da-ga-promotions .promo-grid {
    grid-template-columns: 1fr;
  }

  .page-da-ga-tips .tips-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-da-ga-tips .tips-list .list-icon {
    margin-bottom: 15px;
  }

  .page-da-ga-tips .tips-list h3 {
    text-align: center;
  }

  .page-da-ga-tips .tips-list p {
    text-align: center;
  }

  .page-da-ga-faq .faq-question h3 {
    font-size: 18px;
  }

  .page-da-ga-faq .faq-question {
    padding: 15px 20px;
  }

  .page-da-ga-faq .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-da-ga-hero {
    height: 350px;
  }

  .page-da-ga-hero h1 {
    font-size: 28px;
  }

  .page-da-ga-hero p {
    font-size: 14px;
  }

  .page-da-ga .section-title {
    font-size: 22px;
  }

  .page-da-ga .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  .page-da-ga-intro .intro-card h3,
  .page-da-ga-why-choose .feature-item h3,
  .page-da-ga-guide .step-item h3,
  .page-da-ga-types .type-card h3,
  .page-da-ga-promotions .promo-card h3 {
    font-size: 20px;
  }

  .page-da-ga-faq .faq-question h3 {
    font-size: 16px;
  }
}