/* style/resources-what-is-68gb-apk.css */
.page-resources-what-is-68gb-apk {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000, so text should be light */
  background-color: transparent; /* Main content background will be handled by sections */
}

.page-resources-what-is-68gb-apk__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bbd 100%); /* Brand color gradient */
  color: #ffffff;
}

.page-resources-what-is-68gb-apk__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-resources-what-is-68gb-apk__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-what-is-68gb-apk__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-what-is-68gb-apk__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-what-is-68gb-apk__btn-primary,
.page-resources-what-is-68gb-apk__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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-what-is-68gb-apk__btn-primary {
  background-color: #EA7C07; /* Login/CTA color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-what-is-68gb-apk__btn-primary:hover {
  background-color: #e06c00;
  border-color: #e06c00;
  transform: translateY(-2px);
}

.page-resources-what-is-68gb-apk__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-what-is-68gb-apk__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-what-is-68gb-apk__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-what-is-68gb-apk__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7); /* Darken image for better text contrast */
}

.page-resources-what-is-68gb-apk__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text on light background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-50px); /* Overlap with hero for visual flow */
  position: relative;
  z-index: 3;
}

.page-resources-what-is-68gb-apk__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-what-is-68gb-apk__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-what-is-68gb-apk__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-resources-what-is-68gb-apk__image-block {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure responsive */
  height: auto; /* Ensure responsive */
  display: block;
}

.page-resources-what-is-68gb-apk__image-text-block .page-resources-what-is-68gb-apk__paragraph {
  flex: 1;
  min-width: 300px;
}

.page-resources-what-is-68gb-apk__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-what-is-68gb-apk__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-resources-what-is-68gb-apk__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-what-is-68gb-apk__feature-icon {
  width: 100%; /* Make icon/image fill card width */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%; /* Ensure responsive */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-what-is-68gb-apk__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-what-is-68gb-apk__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-what-is-68gb-apk__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-what-is-68gb-apk__benefits-item {
  background-color: #f0faff;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-what-is-68gb-apk__benefits-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-what-is-68gb-apk__download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
  padding: 40px;
  background-color: #eaf7ff; /* Lighter blue background */
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-resources-what-is-68gb-apk__qr-code {
  width: 250px;
  height: 250px;
  border: 5px solid #26A9E0;
  border-radius: 10px;
  object-fit: contain;
  max-width: 100%; /* Ensure responsive */
  display: block;
}

.page-resources-what-is-68gb-apk__download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.page-resources-what-is-68gb-apk__btn-text-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-what-is-68gb-apk__btn-text-link:hover {
  color: #1a7bbd;
}

.page-resources-what-is-68gb-apk__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-what-is-68gb-apk__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-what-is-68gb-apk__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-what-is-68gb-apk__security-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-resources-what-is-68gb-apk__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-what-is-68gb-apk__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-what-is-68gb-apk__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-resources-what-is-68gb-apk__faq-question:hover {
  background-color: #eaf7ff;
}

.page-resources-what-is-68gb-apk__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-resources-what-is-68gb-apk__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-what-is-68gb-apk__faq-item.active .page-resources-what-is-68gb-apk__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-what-is-68gb-apk__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f0f0f0;
  color: #555555;
}

.page-resources-what-is-68gb-apk__faq-item.active .page-resources-what-is-68gb-apk__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 15px 25px;
}

.page-resources-what-is-68gb-apk__final-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-resources-what-is-68gb-apk__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-what-is-68gb-apk__hero-title {
    font-size: 2.8em;
  }

  .page-resources-what-is-68gb-apk__section-title {
    font-size: 2em;
  }

  .page-resources-what-is-68gb-apk__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-what-is-68gb-apk__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }

  .page-resources-what-is-68gb-apk__hero-title {
    font-size: 2.2em;
  }

  .page-resources-what-is-68gb-apk__hero-description {
    font-size: 1em;
  }

  .page-resources-what-is-68gb-apk__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-resources-what-is-68gb-apk__btn-primary,
  .page-resources-what-is-68gb-apk__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-resources-what-is-68gb-apk__content-area {
    padding: 30px 15px;
    transform: translateY(-30px);
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-what-is-68gb-apk__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-resources-what-is-68gb-apk__image-text-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-resources-what-is-68gb-apk__image-block,
  .page-resources-what-is-68gb-apk__security-image,
  .page-resources-what-is-68gb-apk__qr-code,
  .page-resources-what-is-68gb-apk__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-resources-what-is-68gb-apk__features-grid,
  .page-resources-what-is-68gb-apk__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-what-is-68gb-apk__download-cta {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-what-is-68gb-apk__download-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 10px; /* Add some padding to buttons */
  }
  
  .page-resources-what-is-68gb-apk__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-what-is-68gb-apk__faq-answer {
    padding: 0 20px;
  }

  .page-resources-what-is-68gb-apk__faq-item.active .page-resources-what-is-68gb-apk__faq-answer {
    padding: 15px 20px;
  }
  
  .page-resources-what-is-68gb-apk__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 20px;
    font-size: 1.1em;
  }
  
  /* Ensure all content containers are responsive */
  .page-resources-what-is-68gb-apk__section,
  .page-resources-what-is-68gb-apk__card,
  .page-resources-what-is-68gb-apk__container,
  .page-resources-what-is-68gb-apk__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-what-is-68gb-apk__hero-title {
    font-size: 1.8em;
  }

  .page-resources-what-is-68gb-apk__section-title {
    font-size: 1.6em;
  }

  .page-resources-what-is-68gb-apk__feature-title {
    font-size: 1.3em;
  }

  .page-resources-what-is-68gb-apk__benefits-title {
    font-size: 1.4em;
  }
}