.page-resources-download-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Body background from shared.css */
}

.page-resources-download-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #007bff);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-download-guide__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-download-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-download-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-download-guide__hero-image-container {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

.page-resources-download-guide__hero-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

.page-resources-download-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-resources-download-guide__cta-buttons--centered {
  margin-top: 40px;
}

.page-resources-download-guide__btn-primary,
.page-resources-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-download-guide__btn-primary {
  background: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-download-guide__btn-primary:hover {
  background: #d46c05;
  border-color: #d46c05;
  transform: translateY(-2px);
}

.page-resources-download-guide__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-download-guide__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-download-guide__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for titles */
}

.page-resources-download-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

.page-resources-download-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-download-guide__features-section,
.page-resources-download-guide__features-highlight-section,
.page-resources-download-guide__conclusion-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-resources-download-guide__feature-grid,
.page-resources-download-guide__highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-download-guide__feature-item,
.page-resources-download-guide__highlight-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-download-guide__feature-item:hover,
.page-resources-download-guide__highlight-item:hover {
  transform: translateY(-5px);
}

.page-resources-download-guide__feature-title,
.page-resources-download-guide__highlight-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-download-guide__feature-text,
.page-resources-download-guide__highlight-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-download-guide__highlight-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum image height */
}

.page-resources-download-guide__download-guide-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-download-guide__platform-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.page-resources-download-guide__guide-block {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-resources-download-guide__guide-title {
  font-size: 1.8em;
  margin-bottom: 25px;
  text-align: center;
  color: #26A9E0;
}

.page-resources-download-guide__guide-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum image height */
}

.page-resources-download-guide__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  font-size: 1.05em;
}

.page-resources-download-guide__guide-list li {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-download-guide__guide-list li strong {
  color: #ffffff;
}

.page-resources-download-guide__video-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.page-resources-download-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-resources-download-guide__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-resources-download-guide__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.page-resources-download-guide__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-download-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-download-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-download-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-resources-download-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-resources-download-guide__faq-item.active .page-resources-download-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-download-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-download-guide__faq-item.active .page-resources-download-guide__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-resources-download-guide__conclusion-section {
  background: linear-gradient(135deg, #007bff, #26A9E0);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-download-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-download-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-download-guide__hero-section {
    flex-direction: column;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-download-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-download-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-download-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-download-guide__btn-primary,
  .page-resources-download-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-resources-download-guide__content-area {
    padding: 20px 15px;
  }
  .page-resources-download-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-download-guide__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-resources-download-guide__features-section,
  .page-resources-download-guide__download-guide-section,
  .page-resources-download-guide__video-section,
  .page-resources-download-guide__features-highlight-section,
  .page-resources-download-guide__faq-section,
  .page-resources-download-guide__conclusion-section {
    padding: 50px 0;
  }
  .page-resources-download-guide__feature-grid,
  .page-resources-download-guide__highlight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-download-guide__guide-block {
    min-width: unset;
    max-width: 100%;
    padding: 20px;
  }
  .page-resources-download-guide__guide-title {
    font-size: 1.5em;
  }
  .page-resources-download-guide__guide-list {
    padding-left: 20px;
  }
  .page-resources-download-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-resources-download-guide__faq-answer {
    padding: 10px 20px;
  }
  /* Mobile specific image and video responsiveness */
  .page-resources-download-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-download-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-download-guide__hero-image-container,
  .page-resources-download-guide__feature-item,
  .page-resources-download-guide__highlight-item,
  .page-resources-download-guide__guide-block,
  .page-resources-download-guide__video-wrapper,
  .page-resources-download-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-resources-download-guide__video-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-resources-download-guide__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}