/* style/resources-e88-download-guide.css */

/* Base styles for the page content */
.page-resources-e88-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background #121212 */
  background-color: #121212; /* Inherit from body or set explicitly for sections */
}

.page-resources-e88-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Ensure the first section respects the header offset */
.page-resources-e88-download-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

/* Section styling */
.page-resources-e88-download-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
  overflow: hidden; /* To contain image if it overflows */
}

.page-resources-e88-download-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2; /* Subtle background image */
}

.page-resources-e88-download-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-e88-download-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
}

.page-resources-e88-download-guide__main-title {
  font-size: 2.8em;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

.page-resources-e88-download-guide__content-section,
.page-resources-e88-download-guide__registration-section,
.page-resources-e88-download-guide__faq-section {
  background-color: #242424; /* Lighter dark background for content sections */
  padding: 60px 0;
  color: #f0f0f0; /* Light text for content sections */
}

.page-resources-e88-download-guide__guide-section,
.page-resources-e88-download-guide__features-section,
.page-resources-e88-download-guide__conclusion-section {
  background-color: #1a1a1a; /* Darker background for specific sections */
  padding: 60px 0;
  color: #ffffff; /* White text for darker sections */
}

.page-resources-e88-download-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-e88-download-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-e88-download-guide__subsection-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-e88-download-guide__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-resources-e88-download-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-e88-download-guide__list-item {
  margin-bottom: 10px;
  padding-left: 5px;
}

/* CTA Buttons */
.page-resources-e88-download-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-resources-e88-download-guide__cta-buttons--center {
  justify-content: center;
}

.page-resources-e88-download-guide__btn-primary,
.page-resources-e88-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding and border are included in width */
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-resources-e88-download-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-resources-e88-download-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Step-by-step guide styling */
.page-resources-e88-download-guide__platform-guide {
  margin-bottom: 50px;
}

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

.page-resources-e88-download-guide__step-item {
  background-color: #2e2e2e; /* Card background for steps */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e0e0e0;
}

.page-resources-e88-download-guide__step-icon {
  background-color: #26A9E0;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-resources-e88-download-guide__step-title {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-resources-e88-download-guide__step-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-resources-e88-download-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 200px; /* Min image size requirement */
  min-height: 200px; /* Min image size requirement */
}

/* Important notes styling */
.page-resources-e88-download-guide__important-notes {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  color: #e0e0e0;
}

.page-resources-e88-download-guide__important-notes .page-resources-e88-download-guide__subsection-title {
  color: #26A9E0;
  margin-top: 0;
}

/* Features section */
.page-resources-e88-download-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-e88-download-guide__feature-card {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e0e0e0;
}

.page-resources-e88-download-guide__feature-icon {
  width: 100%; /* Card images should be large */
  height: auto;
  max-width: 400px; /* Example max width for card image */
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min image size requirement */
  min-height: 200px; /* Min image size requirement */
}