/* style/blog-ee888-app-registration-download-guide.css */

/* Base styles for the page content, ensuring contrast with shared body background */
.page-blog-ee888-app-registration-download-guide {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-ee888-app-registration-download-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-ee888-app-registration-download-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-ee888-app-registration-download-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-ee888-app-registration-download-guide__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  z-index: 1;
  color: #F2FFF6; /* Text Main */
}

.page-blog-ee888-app-registration-download-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-ee888-app-registration-download-guide__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-ee888-app-registration-download-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-ee888-app-registration-download-guide__btn-primary,
.page-blog-ee888-app-registration-download-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-ee888-app-registration-download-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-ee888-app-registration-download-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-ee888-app-registration-download-guide__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-ee888-app-registration-download-guide__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6;
}

/* Content Area */
.page-blog-ee888-app-registration-download-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-ee888-app-registration-download-guide__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-ee888-app-registration-download-guide__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-ee888-app-registration-download-guide__subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #22C768; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-ee888-app-registration-download-guide__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-ee888-app-registration-download-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-ee888-app-registration-download-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-ee888-app-registration-download-guide__content-image,
.page-blog-ee888-app-registration-download-guide__step-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Guide Steps */
.page-blog-ee888-app-registration-download-guide__guide-step {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-blog-ee888-app-registration-download-guide__step-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-ee888-app-registration-download-guide__step-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

/* Feature Grid */
.page-blog-ee888-app-registration-download-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-ee888-app-registration-download-guide__feature-card,
.page-blog-ee888-app-registration-download-guide__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
}

.page-blog-ee888-app-registration-download-guide__feature-title,
.page-blog-ee888-app-registration-download-guide__promo-title {
  font-size: 1.4rem;
  color: #22C768; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-blog-ee888-app-registration-download-guide__feature-description,
.page-blog-ee888-app-registration-download-guide__promo-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Promo Grid */
.page-blog-ee888-app-registration-download-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-blog-ee888-app-registration-download-guide__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-ee888-app-registration-download-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-blog-ee888-app-registration-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> */
}

.page-blog-ee888-app-registration-download-guide__faq-question::-webkit-details-marker {
  display: none; /* For <summary> */
}

.page-blog-ee888-app-registration-download-guide__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

.page-blog-ee888-app-registration-download-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-ee888-app-registration-download-guide__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-ee888-app-registration-download-guide__faq-item[open] .page-blog-ee888-app-registration-download-guide__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-ee888-app-registration-download-guide__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-blog-ee888-app-registration-download-guide__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Conclusion Section */
.page-blog-ee888-app-registration-download-guide__conclusion-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-blog-ee888-app-registration-download-guide__conclusion-section .page-blog-ee888-app-registration-download-guide__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-blog-ee888-app-registration-download-guide__conclusion-section .page-blog-ee888-app-registration-download-guide__paragraph {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-ee888-app-registration-download-guide__cta-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-ee888-app-registration-download-guide__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-blog-ee888-app-registration-download-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-blog-ee888-app-registration-download-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-ee888-app-registration-download-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-ee888-app-registration-download-guide__subtitle {
    font-size: 1.5rem;
  }

  .page-blog-ee888-app-registration-download-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-ee888-app-registration-download-guide__btn-primary,
  .page-blog-ee888-app-registration-download-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-ee888-app-registration-download-guide__content-area,
  .page-blog-ee888-app-registration-download-guide__conclusion-section {
    padding: 20px 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-ee888-app-registration-download-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-ee888-app-registration-download-guide__hero-image-wrapper,
  .page-blog-ee888-app-registration-download-guide__content-area,
  .page-blog-ee888-app-registration-download-guide__guide-step,
  .page-blog-ee888-app-registration-download-guide__feature-card,
  .page-blog-ee888-app-registration-download-guide__promo-card,
  .page-blog-ee888-app-registration-download-guide__faq-item,
  .page-blog-ee888-app-registration-download-guide__cta-buttons,
  .page-blog-ee888-app-registration-download-guide__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-ee888-app-registration-download-guide__hero-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-ee888-app-registration-download-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-ee888-app-registration-download-guide__faq-answer {
    padding: 15px 20px;
  }
}