/* style/blog-f8be-app-download-install-guide.css */

/* General Styles */
.page-blog-f8be-app-download-install-guide {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-blog-f8be-app-download-install-guide a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-blog-f8be-app-download-install-guide a:hover {
  text-decoration: underline;
}

.page-blog-f8be-app-download-install-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-f8be-app-download-install-guide__section {
  padding: 60px 0;
  position: relative;
}

.page-blog-f8be-app-download-install-guide__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-f8be-app-download-install-guide__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 font size */
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-f8be-app-download-install-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

/* Hero Section */
.page-blog-f8be-app-download-install-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-blog-f8be-app-download-install-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image for better aspect ratio */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-f8be-app-download-install-guide__hero-image {
  width: 1200px; /* Actual display width */
  height: 675px; /* Actual display height */
  display: block;
  object-fit: cover;
}

.page-blog-f8be-app-download-install-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-f8be-app-download-install-guide__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

/* CTA Buttons */
.page-blog-f8be-app-download-install-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-f8be-app-download-install-guide__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-f8be-app-download-install-guide__btn-primary,
.page-blog-f8be-app-download-install-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-transform: uppercase;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-f8be-app-download-install-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-f8be-app-download-install-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-f8be-app-download-install-guide__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold text for secondary button */
  border: 2px solid #F2C14E; /* Gold border */
}

.page-blog-f8be-app-download-install-guide__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

/* Benefits Section */
.page-blog-f8be-app-download-install-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-f8be-app-download-install-guide__benefits-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-f8be-app-download-install-guide__benefits-heading {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

/* Step-by-step Guide */
.page-blog-f8be-app-download-install-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-blog-f8be-app-download-install-guide__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-f8be-app-download-install-guide__step-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-f8be-app-download-install-guide__step-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 20px;
}

.page-blog-f8be-app-download-install-guide__step-list li {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-f8be-app-download-install-guide__step-list li strong {
  color: #57E38D; /* Glow */
}

/* Image Styling */
.page-blog-f8be-app-download-install-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-f8be-app-download-install-guide__image--inline {
  margin: 20px auto;
}

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

.page-blog-f8be-app-download-install-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-f8be-app-download-install-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* For details summary */
}

.page-blog-f8be-app-download-install-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details */
}

.page-blog-f8be-app-download-install-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-f8be-app-download-install-guide__faq-item[open] .page-blog-f8be-app-download-install-guide__faq-toggle {
  transform: rotate(45deg); /* Change + to X */
}

.page-blog-f8be-app-download-install-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Tips Section */
.page-blog-f8be-app-download-install-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-f8be-app-download-install-guide__tips-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-f8be-app-download-install-guide__tips-heading {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

/* Conclusion Section */
.page-blog-f8be-app-download-install-guide__section--conclusion {
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  padding: 80px 0;
}

.page-blog-f8be-app-download-install-guide__dark-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #ffffff; /* White text for dark background */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-f8be-app-download-install-guide__hero-image-wrapper {
    max-height: 500px;
  }
  .page-blog-f8be-app-download-install-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-f8be-app-download-install-guide__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-blog-f8be-app-download-install-guide__section {
    padding: 40px 0;
  }
  .page-blog-f8be-app-download-install-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-f8be-app-download-install-guide__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .page-blog-f8be-app-download-install-guide__hero-description {
    font-size: 1rem;
  }
  .page-blog-f8be-app-download-install-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-f8be-app-download-install-guide__btn-primary,
  .page-blog-f8be-app-download-install-guide__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }
  .page-blog-f8be-app-download-install-guide__benefits-list,
  .page-blog-f8be-app-download-install-guide__step-by-step,
  .page-blog-f8be-app-download-install-guide__tips-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-blog-f8be-app-download-install-guide__benefits-item,
  .page-blog-f8be-app-download-install-guide__step-card,
  .page-blog-f8be-app-download-install-guide__tips-item {
    padding: 20px;
  }
  .page-blog-f8be-app-download-install-guide__benefits-heading,
  .page-blog-f8be-app-download-install-guide__step-title,
  .page-blog-f8be-app-download-install-guide__tips-heading {
    font-size: 1.3rem;
  }
  .page-blog-f8be-app-download-install-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-f8be-app-download-install-guide__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image specific rules */
  .page-blog-f8be-app-download-install-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-f8be-app-download-install-guide__section,
  .page-blog-f8be-app-download-install-guide__card,
  .page-blog-f8be-app-download-install-guide__container,
  .page-blog-f8be-app-download-install-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-f8be-app-download-install-guide__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-f8be-app-download-install-guide__hero-content {
    padding: 0 15px;
  }
}

/* Contrast Fixes (if needed) */
.page-blog-f8be-app-download-install-guide__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-f8be-app-download-install-guide__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}