/* style/blog-why-choose-68gb-info.css */

/* Base styles for the page content, assuming body background is dark from shared.css */
.page-blog-why-choose-68gb-info {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  font-size: 17px;
}

.page-blog-why-choose-68gb-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-why-choose-68gb-info__section {
  padding: 60px 0;
}

.page-blog-why-choose-68gb-info__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-why-choose-68gb-info__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog-why-choose-68gb-info__light-bg {
  background-color: #F2FFF6;
  color: #11271B; /* Dark text for light background */
}

.page-blog-why-choose-68gb-info__text-contrast-fix {
  color: #11271B; /* For light background sections */
}

.page-blog-why-choose-68gb-info__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-blog-why-choose-68gb-info__light-bg .page-blog-why-choose-68gb-info__section-title {
  color: #11271B;
}

.page-blog-why-choose-68gb-info__text-block {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-why-choose-68gb-info__light-bg .page-blog-why-choose-68gb-info__text-block {
  color: #11271B;
}

.page-blog-why-choose-68gb-info__text-block strong {
  color: #F2FFF6;
}

.page-blog-why-choose-68gb-info__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-blog-why-choose-68gb-info__text-link:hover {
  color: #F2C14E; /* Gold */
}

/* Hero Section */
.page-blog-why-choose-68gb-info__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
}

.page-blog-why-choose-68gb-info__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-why-choose-68gb-info__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-why-choose-68gb-info__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-why-choose-68gb-info__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog-why-choose-68gb-info__description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Buttons */
.page-blog-why-choose-68gb-info__btn-primary,
.page-blog-why-choose-68gb-info__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-why-choose-68gb-info__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-why-choose-68gb-info__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-blog-why-choose-68gb-info__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-why-choose-68gb-info__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1); /* Glow with transparency */
  color: #F2FFF6;
  border-color: #57E38D;
}

.page-blog-why-choose-68gb-info__btn-full-width {
  width: 100%;
  display: block;
  max-width: 400px;
  margin: 30px auto 0;
}

/* Intro Section */
.page-blog-why-choose-68gb-info__intro-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Card Grid */
.page-blog-why-choose-68gb-info__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-why-choose-68gb-info__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-why-choose-68gb-info__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-why-choose-68gb-info__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

/* Product Section */
.page-blog-why-choose-68gb-info__product-section {
  background-color: #08160F;
}

.page-blog-why-choose-68gb-info__main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-why-choose-68gb-info__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-why-choose-68gb-info__feature-list li {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

.page-blog-why-choose-68gb-info__list-title {
  font-size: 20px;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 10px;
}

/* Experience Section */
.page-blog-why-choose-68gb-info__experience-section {
  background-color: #F2FFF6; /* Light background */
  color: #11271B;
}

.page-blog-why-choose-68gb-info__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-why-choose-68gb-info__feature-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-why-choose-68gb-info__feature-card .page-blog-why-choose-68gb-info__card-title {
  color: #11271B;
}

.page-blog-why-choose-68gb-info__feature-card .page-blog-why-choose-68gb-info__text-block {
  color: #333333;
}

/* Promotions Section */
.page-blog-why-choose-68gb-info__promotions-section {
  background-color: #11271B;
}

.page-blog-why-choose-68gb-info__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-why-choose-68gb-info__promo-list li {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
}

/* Registration Section */
.page-blog-why-choose-68gb-info__registration-section {
  background-color: #08160F;
}

.page-blog-why-choose-68gb-info__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-why-choose-68gb-info__step-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Conclusion Section */
.page-blog-why-choose-68gb-info__conclusion-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #0A4B2C; /* Deep Green */
}

/* FAQ Section */
.page-blog-why-choose-68gb-info__faq-section {
  background-color: #F2FFF6;
  color: #11271B;
  padding-top: 40px;
  padding-bottom: 60px;
}

.page-blog-why-choose-68gb-info__faq-list {
  margin-top: 40px;
}

.page-blog-why-choose-68gb-info__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #11271B;
}

.page-blog-why-choose-68gb-info__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #11271B;
  cursor: pointer;
  background-color: #F9F9F9;
  border-bottom: 1px solid #E0E0E0;
  list-style: none;
}

.page-blog-why-choose-68gb-info__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-why-choose-68gb-info__faq-qtext {
  flex-grow: 1;
}

.page-blog-why-choose-68gb-info__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
  transition: transform 0.3s ease;
}

.page-blog-why-choose-68gb-info__faq-item[open] .page-blog-why-choose-68gb-info__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-why-choose-68gb-info__faq-answer {
  padding: 15px 25px 25px;
  font-size: 16px;
  color: #333333;
  border-top: 1px solid #f0f0f0;
}

.page-blog-why-choose-68gb-info__faq-answer p {
  margin-bottom: 0;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-why-choose-68gb-info__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-blog-why-choose-68gb-info__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
  .page-blog-why-choose-68gb-info__description {
    font-size: clamp(16px, 2vw, 20px);
  }
}

@media (max-width: 768px) {
  .page-blog-why-choose-68gb-info {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-why-choose-68gb-info__section {
    padding: 40px 0;
  }
  .page-blog-why-choose-68gb-info__container {
    padding: 0 15px;
  }

  /* Hero Section */
  .page-blog-why-choose-68gb-info__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-why-choose-68gb-info__hero-image-wrapper {
    max-height: 50vh;
    margin-bottom: 30px;
  }
  .page-blog-why-choose-68gb-info__main-title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-blog-why-choose-68gb-info__description {
    font-size: clamp(15px, 3.5vw, 18px);
    margin-bottom: 25px;
  }

  /* Buttons */
  .page-blog-why-choose-68gb-info__btn-primary,
  .page-blog-why-choose-68gb-info__btn-secondary,
  .page-blog-why-choose-68gb-info a[class*="button"],
  .page-blog-why-choose-68gb-info a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-why-choose-68gb-info__btn-full-width {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }
  .page-blog-why-choose-68gb-info__cta-buttons,
  .page-blog-why-choose-68gb-info__button-group,
  .page-blog-why-choose-68gb-info__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  /* Images */
  .page-blog-why-choose-68gb-info img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-why-choose-68gb-info__section,
  .page-blog-why-choose-68gb-info__card,
  .page-blog-why-choose-68gb-info__container,
  .page-blog-why-choose-68gb-info__hero-image-wrapper,
  .page-blog-why-choose-68gb-info__card-image,
  .page-blog-why-choose-68gb-info__main-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow for images */
  }
  .page-blog-why-choose-68gb-info__card-grid,
  .page-blog-why-choose-68gb-info__feature-grid,
  .page-blog-why-choose-68gb-info__feature-list,
  .page-blog-why-choose-68gb-info__promo-list,
  .page-blog-why-choose-68gb-info__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-why-choose-68gb-info__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-blog-why-choose-68gb-info__faq-answer {
    padding: 10px 20px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-why-choose-68gb-info__section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .page-blog-why-choose-68gb-info__main-title {
    font-size: clamp(24px, 8vw, 32px);
  }
}