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

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

.page-da-ga section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-da-ga section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3 {
  color: #000080; /* Deep Blue */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-da-ga h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

.page-da-ga h2 {
  font-size: 2.5em;
  color: #000080;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-da-ga h3 {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

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

.page-da-ga ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-da-ga li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-da-ga .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #000080; /* Deep Blue */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 25px;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-da-ga .cta-button:hover {
  background: #000080; /* Deep Blue */
  color: #FFD700; /* Gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-da-ga .cta-button.secondary {
  background: #000080;
  color: #FFD700;
  border: 2px solid #000080;
}

.page-da-ga .cta-button.secondary:hover {
  background: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-da-ga .button-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-da-ga .button-small:hover {
  background: #000080;
  color: #FFD700;
  border-color: #000080;
  transform: translateY(-1px);
}

/* Hero Section */
.page-da-ga .hero-dagav2 {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000080, #330066);
  color: #ffffff;
}

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

.page-da-ga .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-da-ga .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-da-ga .hero-content h1 {
  color: #FFD700;
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-da-ga .hero-content p {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: center;
}

/* Intro Section */
.page-da-ga .section-intro {
  background-color: #fefefe;
  padding-bottom: 40px;
}

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

.page-da-ga .intro-item {
  text-align: center;
  padding: 25px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-da-ga .intro-item .item-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
}

.page-da-ga .intro-item h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-da-ga .intro-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

.page-da-ga .call-to-action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000080;
}

/* Types of Cockfighting Section */
.page-da-ga .section-types-of-cockfighting {
  background-color: #f0f4f7;
}

.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-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-da-ga .type-item .item-image {
  width: 100%;
  max-width: 350px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
}

.page-da-ga .type-item h3 {
  color: #000080;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-da-ga .type-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* Guide Section */
.page-da-ga .section-guide {
  background-color: #ffffff;
}

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

.page-da-ga .step-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

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

.page-da-ga .step-item .step-image {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.page-da-ga .step-item h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-da-ga .step-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* Tips Section */
.page-da-ga .section-tips {
  background-color: #f0f4f7;
}

.page-da-ga .section-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-da-ga .section-tips li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  color: #333333;
  text-align: left;
}

.page-da-ga .section-tips li strong {
  color: #000080;
}

/* Support Section */
.page-da-ga .section-support {
  background-color: #ffffff;
}

.page-da-ga .section-support ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-da-ga .section-support li {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  border: 1px solid #eee;
}

.page-da-ga .section-support li strong {
  color: #000080;
}

/* FAQ Section */
.page-da-ga .section-faq {
  background-color: #f0f4f7;
}

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

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

.page-da-ga .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-da-ga .faq-question:hover {
  background: #fffbe6;
  border-color: #FFD700;
}

.page-da-ga .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #000080;
  text-align: left;
  flex-grow: 1;
}

.page-da-ga .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.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: #fdfdfd;
  color: #555555;
  font-size: 1.05em;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.page-da-ga .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-da-ga .faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

/* Blog Section */
.page-da-ga .section-blog {
  background-color: #ffffff;
}

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

.page-da-ga .blog-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-da-ga .blog-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-da-ga .blog-card .card-content {
  padding: 20px;
}

.page-da-ga .blog-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: left;
}

.page-da-ga .blog-card h3 a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-da-ga .blog-card h3 a:hover {
  color: #FFD700;
}

.page-da-ga .blog-card p {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
  text-align: left;
}

.page-da-ga .blog-card .read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-da-ga .blog-card .read-more:hover {
  color: #000080;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-da-ga h1 {
    font-size: 2.8em;
  }
  .page-da-ga h2 {
    font-size: 2em;
  }
  .page-da-ga h3 {
    font-size: 1.5em;
  }
  .page-da-ga .hero-content {
    padding: 25px;
  }
  .page-da-ga .hero-content h1 {
    font-size: 3em;
  }
  .page-da-ga .hero-content p {
    font-size: 1.1em;
  }
  .page-da-ga .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-da-ga section {
    padding: 40px 0;
  }
  .page-da-ga .container {
    padding: 0 15px;
  }
  .page-da-ga h1 {
    font-size: 2.2em;
  }
  .page-da-ga h2 {
    font-size: 1.8em;
  }
  .page-da-ga h3 {
    font-size: 1.3em;
  }
  .page-da-ga p {
    font-size: 1em;
  }
  .page-da-ga .hero-dagav2 {
    min-height: 400px;
    padding: 60px 15px;
  }
  .page-da-ga .hero-content h1 {
    font-size: 2.5em;
  }
  .page-da-ga .hero-content p {
    font-size: 1em;
  }
  .page-da-ga .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-da-ga .intro-grid, .page-da-ga .type-grid, .page-da-ga .guide-steps, .page-da-ga .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-da-ga .intro-item, .page-da-ga .type-item, .page-da-ga .step-item, .page-da-ga .blog-card {
    padding: 20px;
  }
  .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: 20px;
  }
  .page-da-ga .faq-answer {
    padding: 15px 20px;
  }
  .page-da-ga .section-support ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-da-ga h1 {
    font-size: 1.8em;
  }
  .page-da-ga .hero-content h1 {
    font-size: 2em;
  }
  .page-da-ga .hero-content p {
    font-size: 0.9em;
  }
  .page-da-ga .cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-da-ga .faq-question h3 {
    font-size: 1em;
  }
}