/* style/da-ga.css */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-da-ga__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-da-ga__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

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

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

@media (min-width: 768px) {
  .page-da-ga__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-da-ga__bg-dark {
  background-color: #007bff;
  color: #fff;
  padding: 60px 0;
}

.page-da-ga__text-center {
  text-align: center;
}

.page-da-ga__highlight {
  color: #007bff;
  font-weight: bold;
}

.page-da-ga__bg-dark .page-da-ga__highlight {
  color: #ffc107;
}

/* Hero Section */
.page-da-ga__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-da-ga__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.page-da-ga__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-da-ga__hero-actions .page-da-ga__btn {
  margin: 0 10px;
}

/* Buttons */
.page-da-ga__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-da-ga__btn--primary {
  background-color: #ffc107;
  color: #000;
}

.page-da-ga__btn--primary:hover {
  background-color: #e0a800;
  color: #000;
}

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

.page-da-ga__btn--secondary:hover {
  background-color: #fff;
  color: #007bff;
}

.page-da-ga__btn--tertiary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-da-ga__btn--tertiary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-da-ga__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Section Titles */
.page-da-ga__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

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

/* About Section */
.page-da-ga__about {
  padding: 60px 0;
}

.page-da-ga__about .page-da-ga__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-da-ga__features {
  padding: 60px 0;
}

.page-da-ga__feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards are same height */
}

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

.page-da-ga__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  /* No filter property to change color */
}

.page-da-ga__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-da-ga__features .page-da-ga__feature-card p {
  color: #555;
}

/* How-To Section */
.page-da-ga__how-to {
  padding: 60px 0;
  background-color: #f1f7fe;
}

.page-da-ga__how-to .page-da-ga__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-da-ga__step-list li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 40px;
}

.page-da-ga__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffc107;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-da-ga__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 5px;
}

.page-da-ga__step-list p {
  color: #555;
}

/* Tips Section */
.page-da-ga__tips {
  padding: 60px 0;
}

.page-da-ga__tip-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.page-da-ga__tips .page-da-ga__card-title {
  color: #ffc107;
}

.page-da-ga__tips .page-da-ga__tip-card p {
  color: #555;
}

/* Call to Action Section */
.page-da-ga__cta {
  padding: 80px 0;
}

.page-da-ga__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e9ecef;
}

.page-da-ga__cta-description a {
  color: #ffc107;
  font-weight: bold;
  text-decoration: none;
}

.page-da-ga__cta-description a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-da-ga__hero-title {
    font-size: 2.8em;
  }
  .page-da-ga__hero-description {
    font-size: 1.1em;
  }
  .page-da-ga__section-title {
    font-size: 2em;
  }
  .page-da-ga__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 767px) {
  .page-da-ga__hero-title {
    font-size: 2.2em;
  }
  .page-da-ga__hero-description {
    font-size: 1em;
  }
  .page-da-ga__hero-actions .page-da-ga__btn {
    display: block;
    margin: 15px auto;
  }
  .page-da-ga__grid {
    grid-template-columns: 1fr;
  }
  .page-da-ga__section-title {
    font-size: 1.8em;
  }
  .page-da-ga__feature-card, .page-da-ga__tip-card {
    padding: 20px;
  }
  .page-da-ga__step-list li {
    padding-left: 35px;
  }
  .page-da-ga__step-list li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-da-ga__hero {
    padding: 60px 0;
  }
  .page-da-ga__hero-title {
    font-size: 1.8em;
  }
  .page-da-ga__section-title {
    font-size: 1.5em;
  }
  .page-da-ga__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-da-ga__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}