/* style/da-ga.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #002244;
  --accent-color: #e6b800;
}

.page--da-ga {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

.page--da-ga h1, .page--da-ga h2, .page--da-ga h3, .page--da-ga h4 {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.page--da-ga h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--da-ga h2 {
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  color: var(--primary-color);
}

.page--da-ga h3 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.page--da-ga .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
  overflow: hidden;
}

.page--da-ga .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page--da-ga .hero-image {
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.page--da-ga .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page--da-ga .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page--da-ga .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page--da-ga .cta-button, .page--da-ga .cta-button-bottom {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
}

.page--da-ga .cta-button:hover, .page--da-ga .cta-button-bottom:hover {
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

.page--da-ga .section-intro, .page--da-ga .section-types, .page--da-ga .section-why-choose, .page--da-ga .section-how-to, .page--da-ga .section-tips, .page--da-ga .section-responsible, .page--da-ga .section-faq, .page--da-ga .section-conclusion {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: var(--bg-light);
  border-bottom: 1px solid #e0e0e0;
}

.page--da-ga .section-intro p, .page--da-ga .section-responsible p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

.page--da-ga .section-types {
  background-color: #ffffff;
}

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

.page--da-ga .type-card, .page--da-ga .feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page--da-ga .type-card img, .page--da-ga .feature-item img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page--da-ga .type-card h3, .page--da-ga .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page--da-ga .type-card p, .page--da-ga .feature-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
  text-align: justify;
}

.page--da-ga .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page--da-ga .btn-small:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

.page--da-ga .step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page--da-ga .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page--da-ga .step-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 10px;
  margin-bottom: 15px;
}

.page--da-ga .step-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page--da-ga .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page--da-ga .btn-primary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page--da-ga .section-tips ul, .page--da-ga .section-responsible ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page--da-ga .section-tips li, .page--da-ga .section-responsible li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-dark);
  line-height: 1.8;
  border-left: 5px solid var(--secondary-color);
  text-align: justify;
}

.page--da-ga .section-tips li strong, .page--da-ga .section-responsible li strong {
  color: var(--primary-color);
}

.page--da-ga .section-faq {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-bottom: 80px;
}

.page--da-ga .section-faq h2 {
  color: var(--secondary-color);
}

.page--da-ga .faq-list {
  margin-top: 40px;
}

.page--da-ga .faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page--da-ga .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #ffffff;
  color: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

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

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

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

.page--da-ga .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--bg-dark);
  color: var(--text-light);
}

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

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

.page--da-ga .faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: justify;
}

.page--da-ga .faq-answer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page--da-ga .faq-answer a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.page--da-ga .section-conclusion {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
}

.page--da-ga .section-conclusion h2 {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page--da-ga .section-conclusion p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--da-ga h1 {
    font-size: 2.2em;
  }
  .page--da-ga h2 {
    font-size: 1.8em;
  }
  .page--da-ga h3 {
    font-size: 1.4em;
  }
  .page--da-ga .cta-button, .page--da-ga .cta-button-bottom {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page--da-ga .type-grid, .page--da-ga .feature-grid, .page--da-ga .step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page--da-ga .section-intro, .page--da-ga .section-types, .page--da-ga .section-why-choose, .page--da-ga .section-how-to, .page--da-ga .section-tips, .page--da-ga .section-responsible, .page--da-ga .section-faq, .page--da-ga .section-conclusion {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .page--da-ga h1 {
    font-size: 1.8em;
  }
  .page--da-ga h2 {
    font-size: 1.6em;
  }
  .page--da-ga h3 {
    font-size: 1.3em;
  }
  .page--da-ga .hero-section {
    padding: 60px 15px;
  }
  .page--da-ga .cta-button, .page--da-ga .cta-button-bottom {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page--da-ga .type-grid, .page--da-ga .feature-grid, .page--da-ga .step-by-step {
    grid-template-columns: 1fr;
  }
  .page--da-ga .type-card, .page--da-ga .feature-item, .page--da-ga .step-item {
    padding: 20px;
  }
  .page--da-ga .type-card img, .page--da-ga .feature-item img {
    height: 180px;
  }
  .page--da-ga .btn-small, .page--da-ga .btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page--da-ga .faq-question {
    padding: 15px 20px;
  }
  .page--da-ga .faq-question h3 {
    font-size: 1.1em;
  }
  .page--da-ga .faq-toggle {
    font-size: 1.5em;
  }
  .page--da-ga .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page--da-ga .section-tips li, .page--da-ga .section-responsible li {
    font-size: 1em;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page--da-ga h1 {
    font-size: 1.5em;
  }
  .page--da-ga h2 {
    font-size: 1.4em;
  }
  .page--da-ga h3 {
    font-size: 1.2em;
  }
  .page--da-ga .hero-content p {
    font-size: 1em;
  }
  .page--da-ga .cta-button, .page--da-ga .cta-button-bottom {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page--da-ga .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page--da-ga .faq-question h3 {
    font-size: 1em;
  }
  .page--da-ga .faq-toggle {
    font-size: 1.3em;
  }
}