/* style/resources-da-ga-67-guide.css */

.page-resources-da-ga-67-guide {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #1A1A1A; /* Very dark background */
  line-height: 1.6;
}

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

.page-resources-da-ga-67-guide__hero {
  background: linear-gradient(135deg, #B22222 0%, #FFD700 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #1A1A1A; /* Dark text for light/gradient background */
  position: relative;
  overflow: hidden;
}

.page-resources-da-ga-67-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Dark overlay for text readability */
  z-index: 1;
}

.page-resources-da-ga-67-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-da-ga-67-guide__hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFF; /* White text for contrast on dark overlay */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-da-ga-67-guide__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #EEE; /* Slightly off-white for contrast */
}

.page-resources-da-ga-67-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-da-ga-67-guide__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-resources-da-ga-67-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-da-ga-67-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-da-ga-67-guide h2 {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-da-ga-67-guide h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #B22222; /* Firebrick accent */
  border-radius: 2px;
}

.page-resources-da-ga-67-guide h3 {
  font-size: 1.8em;
  color: #B22222; /* Firebrick for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-da-ga-67-guide p {
  margin-bottom: 15px;
  color: #D3D3D3; /* Light grey for body text */
}

.page-resources-da-ga-67-guide ul,
.page-resources-da-ga-67-guide ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #D3D3D3;
}

.page-resources-da-ga-67-guide ul li,
.page-resources-da-ga-67-guide ol li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-resources-da-ga-67-guide strong {
  color: #FFD700;
}

.page-resources-da-ga-67-guide a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-da-ga-67-guide a:hover {
  color: #B22222;
}

.page-resources-da-ga-67-guide__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}

.page-resources-da-ga-67-guide__btn--primary {
  background-color: #B22222; /* Firebrick button */
  color: #FFF;
  border: 2px solid #B22222;
}

.page-resources-da-ga-67-guide__btn--primary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  border-color: #FFD700;
}

.page-resources-da-ga-67-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-da-ga-67-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-resources-da-ga-67-guide__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-resources-da-ga-67-guide__content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-da-ga-67-guide__content-row--reverse {
  flex-direction: row-reverse;
}

.page-resources-da-ga-67-guide__text-content,
.page-resources-da-ga-67-guide__image-content {
  flex: 1;
  min-width: 300px;
}

.page-resources-da-ga-67-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-da-ga-67-guide__image--full-width {
    margin-top: 30px;
}

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

.page-resources-da-ga-67-guide__step-item {
  background-color: #282828;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-resources-da-ga-67-guide__step-item h3 {
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-resources-da-ga-67-guide__faq-item {
  background-color: #282828;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.page-resources-da-ga-67-guide__faq-item h3 {
  color: #B22222;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  cursor: pointer;
  position: relative;
}

.page-resources-da-ga-67-guide__faq-item p {
  color: #D3D3D3;
  margin-bottom: 0;
  display: none; /* Initially hidden */
}

.page-resources-da-ga-67-guide__faq-item.active p {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-da-ga-67-guide__hero h1 {
    font-size: 2.8em;
  }
  .page-resources-da-ga-67-guide h2 {
    font-size: 2em;
  }
  .page-resources-da-ga-67-guide h3 {
    font-size: 1.6em;
  }
  .page-resources-da-ga-67-guide__content-row {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-da-ga-67-guide__content-row--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-resources-da-ga-67-guide__hero {
    padding: 60px 0;
  }
  .page-resources-da-ga-67-guide__hero h1 {
    font-size: 2.2em;
  }
  .page-resources-da-ga-67-guide__hero p {
    font-size: 1em;
  }
  .page-resources-da-ga-67-guide h2 {
    font-size: 1.8em;
  }
  .page-resources-da-ga-67-guide h3 {
    font-size: 1.4em;
  }
  .page-resources-da-ga-67-guide__section {
    padding: 40px 0;
  }
  .page-resources-da-ga-67-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-da-ga-67-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-da-ga-67-guide__hero h1 {
    font-size: 1.8em;
  }
  .page-resources-da-ga-67-guide h2 {
    font-size: 1.5em;
  }
  .page-resources-da-ga-67-guide h3 {
    font-size: 1.2em;
  }
}