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

.page-blog-how-to-safely-access-55my-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--background-color); /* Dark background */
}

.page-blog-how-to-safely-access-55my-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-how-to-safely-access-55my-link__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-how-to-safely-access-55my-link__hero-image-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}

.page-blog-how-to-safely-access-55my-link__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-how-to-safely-access-55my-link__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
  margin-top: 100px; /* Push content down to avoid header overlap */
}

.page-blog-how-to-safely-access-55my-link__main-title {
  color: var(--text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-how-to-safely-access-55my-link__description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-how-to-safely-access-55my-link__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-how-to-safely-access-55my-link__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-how-to-safely-access-55my-link__section {
  padding: 60px 0;
}

.page-blog-how-to-safely-access-55my-link__section-title {
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: bold;
}

.page-blog-how-to-safely-access-55my-link__text-block {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-how-to-safely-access-55my-link__inline-link {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-how-to-safely-access-55my-link__inline-link:hover {
  text-decoration: underline;
}

.page-blog-how-to-safely-access-55my-link__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-blog-how-to-safely-access-55my-link__image-with-text {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-safely-access-55my-link__image-with-text--reversed {
  flex-direction: row-reverse;
}

.page-blog-how-to-safely-access-55my-link__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-safely-access-55my-link__image-center {
  display: block;
  margin: 40px auto;
  max-width: 80%;
}

.page-blog-how-to-safely-access-55my-link__text-content {
  flex: 1;
}

.page-blog-how-to-safely-access-55my-link__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-how-to-safely-access-55my-link__ordered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-how-to-safely-access-55my-link__list-item {
  margin-bottom: 10px;
}

.page-blog-how-to-safely-access-55my-link__list-title {
  color: var(--text-main);
  font-size: 1.3em;
  margin-bottom: 5px;
}

.page-blog-how-to-safely-access-55my-link__list-description {
  color: var(--text-secondary);
}

.page-blog-how-to-safely-access-55my-link__highlight {
  color: var(--gold-color);
  font-weight: bold;
}

.page-blog-how-to-safely-access-55my-link__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-safely-access-55my-link__benefit-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-safely-access-55my-link__card-title {
  color: var(--text-main);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-blog-how-to-safely-access-55my-link__card-text {
  color: var(--text-secondary);
}

.page-blog-how-to-safely-access-55my-link__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-safely-access-55my-link__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);
}

.page-blog-how-to-safely-access-55my-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main);
  list-style: none; /* For details/summary */
}

.page-blog-how-to-safely-access-55my-link__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-how-to-safely-access-55my-link__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--glow-color);
}

.page-blog-how-to-safely-access-55my-link__faq-item[open] .page-blog-how-to-safely-access-55my-link__faq-toggle {
  transform: rotate(45deg); /* Rotate + to X when open */
}

.page-blog-how-to-safely-access-55my-link__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary);
}

.page-blog-how-to-safely-access-55my-link__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-how-to-safely-access-55my-link__cta-button {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-how-to-safely-access-55my-link__hero-content {
    margin-top: 50px;
    padding: 40px 15px;
  }

  .page-blog-how-to-safely-access-55my-link__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-safely-access-55my-link__image-with-text {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-how-to-safely-access-55my-link__image-with-text--reversed {
    flex-direction: column;
  }

  .page-blog-how-to-safely-access-55my-link__content-image {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .page-blog-how-to-safely-access-55my-link__text-content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-safely-access-55my-link__hero-content {
    margin-top: 30px;
    padding: 30px 10px;
  }

  .page-blog-how-to-safely-access-55my-link__main-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-safely-access-55my-link__description {
    font-size: 1em;
  }

  .page-blog-how-to-safely-access-55my-link__section {
    padding: 40px 0;
  }

  .page-blog-how-to-safely-access-55my-link__section-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-safely-access-55my-link__content-image,
  .page-blog-how-to-safely-access-55my-link__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-safely-access-55my-link__section,
  .page-blog-how-to-safely-access-55my-link__container,
  .page-blog-how-to-safely-access-55my-link__hero-section,
  .page-blog-how-to-safely-access-55my-link__image-with-text,
  .page-blog-how-to-safely-access-55my-link__benefits-grid,
  .page-blog-how-to-safely-access-55my-link__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-safely-access-55my-link__btn-primary,
  .page-blog-how-to-safely-access-55my-link__cta-button,
  .page-blog-how-to-safely-access-55my-link a[class*="button"],
  .page-blog-how-to-safely-access-55my-link 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;
    text-align: center;
  }

  .page-blog-how-to-safely-access-55my-link__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-safely-access-55my-link__hero-section {
    padding-top: 10px !important;
  }
}