/* style/blog-how-to-securely-access-12bey.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-how-to-securely-access-12bey {
  color: var(--text-main-color); /* Body background is dark, so text is light */
  background-color: var(--background-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-how-to-securely-access-12bey__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-how-to-securely-access-12bey__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-securely-access-12bey__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-blog-how-to-securely-access-12bey__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image slightly */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for text */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-access-12bey__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-securely-access-12bey__lead-paragraph {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-how-to-securely-access-12bey__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-how-to-securely-access-12bey__cta-buttons--centered {
  margin-top: 40px;
}

.page-blog-how-to-securely-access-12bey__btn-primary,
.page-blog-how-to-securely-access-12bey__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-securely-access-12bey__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: 2px solid var(--glow-color);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

.page-blog-how-to-securely-access-12bey__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.6);
}

.page-blog-how-to-securely-access-12bey__btn-secondary {
  background: var(--card-bg);
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-blog-how-to-securely-access-12bey__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--background-color);
  transform: translateY(-3px);
}

.page-blog-how-to-securely-access-12bey__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-how-to-securely-access-12bey__dark-section {
  background-color: var(--card-bg);
}

.page-blog-how-to-securely-access-12bey__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold-color);
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-how-to-securely-access-12bey__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.page-blog-how-to-securely-access-12bey__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-how-to-securely-access-12bey__highlight {
  color: var(--gold-color);
  font-weight: 700;
}

.page-blog-how-to-securely-access-12bey__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-securely-access-12bey__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-securely-access-12bey__list-item {
  background-color: var(--deep-green-color);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: var(--text-main-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-securely-access-12bey__list-item strong {
  color: var(--gold-color);
}

.page-blog-how-to-securely-access-12bey__list--benefits .page-blog-how-to-securely-access-12bey__list-item {
  background-color: var(--card-bg);
  border-left-color: var(--gold-color);
}

.page-blog-how-to-securely-access-12bey__faq-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-blog-how-to-securely-access-12bey__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-securely-access-12bey__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-how-to-securely-access-12bey__faq-item summary {
  list-style: none;
}

.page-blog-how-to-securely-access-12bey__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-securely-access-12bey__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  transition: background-color 0.3s ease;
}

.page-blog-how-to-securely-access-12bey__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-how-to-securely-access-12bey__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-securely-access-12bey__faq-item[open] .page-blog-how-to-securely-access-12bey__faq-toggle {
  content: '−';
}

.page-blog-how-to-securely-access-12bey__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
  border-top: 1px solid var(--border-color);
}

.page-blog-how-to-securely-access-12bey__faq-answer p {
  margin-bottom: 0;
}

.page-blog-how-to-securely-access-12bey__cta-banner {
  padding: 80px 20px;
  text-align: center;
  background: var(--card-bg);
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
}

.page-blog-how-to-securely-access-12bey__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 25px;
  text-shadow: 0 0 12px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-securely-access-12bey__cta-description {
  font-size: 1.2em;
  color: var(--text-secondary-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-securely-access-12bey__hero-content {
    margin-top: -100px;
    padding: 30px 15px;
  }

  .page-blog-how-to-securely-access-12bey__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-blog-how-to-securely-access-12bey__section-title {
    font-size: 2em;
  }

  .page-blog-how-to-securely-access-12bey__sub-title {
    font-size: 1.6em;
  }

  .page-blog-how-to-securely-access-12bey__cta-title {
    font-size: 2.2em;
  }
}

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

  .page-blog-how-to-securely-access-12bey__hero-content {
    margin-top: -80px;
    padding: 25px 10px;
  }

  .page-blog-how-to-securely-access-12bey__main-title {
    font-size: 2.2em;
  }

  .page-blog-how-to-securely-access-12bey__lead-paragraph {
    font-size: 1em;
  }

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

  .page-blog-how-to-securely-access-12bey__btn-primary,
  .page-blog-how-to-securely-access-12bey__btn-secondary {
    width: 100% !important;
    max-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-securely-access-12bey__cta-buttons,
  .page-blog-how-to-securely-access-12bey__button-group,
  .page-blog-how-to-securely-access-12bey__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;
  }

  .page-blog-how-to-securely-access-12bey__content-section,
  .page-blog-how-to-securely-access-12bey__faq-section,
  .page-blog-how-to-securely-access-12bey__cta-banner {
    padding: 40px 0;
  }

  .page-blog-how-to-securely-access-12bey__container {
    padding: 0 15px;
  }

  .page-blog-how-to-securely-access-12bey__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-blog-how-to-securely-access-12bey__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-securely-access-12bey__text-block {
    font-size: 1em;
  }

  .page-blog-how-to-securely-access-12bey__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  .page-blog-how-to-securely-access-12bey__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-securely-access-12bey img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-securely-access-12bey__section,
  .page-blog-how-to-securely-access-12bey__card,
  .page-blog-how-to-securely-access-12bey__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-securely-access-12bey__video-section {
    padding-top: 10px !important;
  }

  .page-blog-how-to-securely-access-12bey__cta-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-securely-access-12bey__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-securely-access-12bey__main-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-securely-access-12bey__section-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-securely-access-12bey__sub-title {
    font-size: 1.2em;
  }

  .page-blog-how-to-securely-access-12bey__cta-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-securely-access-12bey__btn-primary,
  .page-blog-how-to-securely-access-12bey__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-blog-how-to-securely-access-12bey__faq-question {
    font-size: 1em;
    padding: 15px;
  }

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