/* style/blog-how-to-access-188bey.css */

/* Base styles for the page content, considering a dark body background from shared.css */
.page-blog-how-to-access-188bey {
  color: #F2FFF6; /* Main text color for dark backgrounds */
  background-color: #08160F; /* Page specific background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-blog-how-to-access-188bey__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-access-188bey__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A4B2C; /* Deep Green background for hero */
  overflow: hidden;
}

.page-blog-how-to-access-188bey__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-blog-how-to-access-188bey__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast, without changing color */
}

.page-blog-how-to-access-188bey__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  color: #F2FFF6; /* Light text for dark background */
}

.page-blog-how-to-access-188bey__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-how-to-access-188bey__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-blog-how-to-access-188bey__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-how-to-access-188bey__btn-primary,
.page-blog-how-to-access-188bey__btn-secondary,
.page-blog-how-to-access-188bey__btn-tertiary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-how-to-access-188bey__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

.page-blog-how-to-access-188bey__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-blog-how-to-access-188bey__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow color text for secondary button */
  border: 2px solid #57E38D;
}

.page-blog-how-to-access-188bey__btn-secondary:hover {
  background-color: #57E38D;
  color: #0A4B2C; /* Deep Green text on hover */
}

.page-blog-how-to-access-188bey__btn-tertiary {
  background-color: #2E7A4E;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-blog-how-to-access-188bey__btn-tertiary:hover {
  background-color: #0A4B2C;
  border-color: #0A4B2C;
}

.page-blog-how-to-access-188bey__btn-inline {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Content Sections */
.page-blog-how-to-access-188bey__content-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-how-to-access-188bey__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-how-to-access-188bey__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-how-to-access-188bey__paragraph {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-access-188bey__highlight {
  color: #F2C14E; /* Gold color for highlights */
  font-weight: 700;
}

.page-blog-how-to-access-188bey__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-blog-how-to-access-188bey__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-access-188bey__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6; /* Light text for dark card background */
}

.page-blog-how-to-access-188bey__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-access-188bey__feature-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-how-to-access-188bey__feature-description {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: justify;
  flex-grow: 1;
}

/* Step-by-step Guide */
.page-blog-how-to-access-188bey__step-by-step-guide {
  margin-top: 40px;
}

.page-blog-how-to-access-188bey__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
  background-color: #11271B;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-access-188bey__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #57E38D; /* Glow color */
  min-width: 50px;
  text-align: center;
}

.page-blog-how-to-access-188bey__step-content {
  flex-grow: 1;
}

.page-blog-how-to-access-188bey__step-title {
  font-size: 1.6rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

/* Benefits List */
.page-blog-how-to-access-188bey__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-how-to-access-188bey__benefits-item {
  background-color: #11271B;
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #A7D9B8;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-access-188bey__benefits-item strong {
  color: #F2FFF6;
}

.page-blog-how-to-access-188bey__benefits-item a {
  color: #57E38D; /* Link color */
  text-decoration: none;
}

.page-blog-how-to-access-188bey__benefits-item a:hover {
  text-decoration: underline;
}

/* Security Tips */
.page-blog-how-to-access-188bey__security-tips {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-blog-how-to-access-188bey__security-item {
  background-color: #11271B;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #A7D9B8;
  font-size: 1.05rem;
  position: relative;
  padding-left: 45px;
}

.page-blog-how-to-access-188bey__security-item::before {
  content: '✔';
  color: #2AD16F;
  font-size: 1.5rem;
  position: absolute;
  left: 15px;
  top: 15px;
}

/* FAQ Section */
.page-blog-how-to-access-188bey__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-access-188bey__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-how-to-access-188bey__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-how-to-access-188bey__faq-item[open] .page-blog-how-to-access-188bey__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Maintain border when open */
}

.page-blog-how-to-access-188bey__faq-question::-webkit-details-marker,
.page-blog-how-to-access-188bey__faq-question::marker {
  display: none;
  content: '';
}

.page-blog-how-to-access-188bey__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-access-188bey__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-blog-how-to-access-188bey__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
}

/* Call to action bottom section */
.page-blog-how-to-access-188bey__cta-bottom-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-blog-how-to-access-188bey__cta-bottom-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-blog-how-to-access-188bey__cta-bottom-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-access-188bey__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-access-188bey {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-access-188bey__container,
  .page-blog-how-to-access-188bey__hero-section,
  .page-blog-how-to-access-188bey__content-section,
  .page-blog-how-to-access-188bey__cta-bottom-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-blog-how-to-access-188bey__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding for visual */
    padding-bottom: 40px;
  }

  .page-blog-how-to-access-188bey__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 30px;
  }

  .page-blog-how-to-access-188bey__hero-image,
  .page-blog-how-to-access-188bey__feature-image,
  .page-blog-how-to-access-188bey__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-access-188bey__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-access-188bey__btn-primary,
  .page-blog-how-to-access-188bey__btn-secondary,
  .page-blog-how-to-access-188bey__btn-tertiary,
  .page-blog-how-to-access-188bey a[class*="button"],
  .page-blog-how-to-access-188bey 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-how-to-access-188bey__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-blog-how-to-access-188bey__step-number {
    margin-bottom: 15px;
  }

  .page-blog-how-to-access-188bey__btn-inline {
    width: auto !important;
    max-width: fit-content !important;
    margin: 0 5px;
  }

  .page-blog-how-to-access-188bey__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-access-188bey__faq-answer {
    padding: 15px 20px;
  }
}