/* style/resources-how-to-safely-access-88fc-link.css */
.page-resources-how-to-safely-access-88fc-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#121212), so use light text */
}

.page-resources-how-to-safely-access-88fc-link__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #26A9E0, #0F5E8E);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-resources-how-to-safely-access-88fc-link__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.page-resources-how-to-safely-access-88fc-link__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-how-to-safely-access-88fc-link__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-safely-access-88fc-link__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__btn-primary,
.page-resources-how-to-safely-access-88fc-link__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-safely-access-88fc-link__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-resources-how-to-safely-access-88fc-link__btn-primary:hover {
  background-color: #D36C06;
  border-color: #D36C06;
}

.page-resources-how-to-safely-access-88fc-link__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-how-to-safely-access-88fc-link__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-resources-how-to-safely-access-88fc-link__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-how-to-safely-access-88fc-link__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-how-to-safely-access-88fc-link__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: -60px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 2;
}

.page-resources-how-to-safely-access-88fc-link__container {
  padding: 20px 0;
}

.page-resources-how-to-safely-access-88fc-link__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #26A9E0;
  padding-bottom: 15px;
}

.page-resources-how-to-safely-access-88fc-link__sub-title {
  font-size: 2em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-resources-how-to-safely-access-88fc-link__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-how-to-safely-access-88fc-link__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__card {
  background-color: #2a2a2a; /* Card background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-how-to-safely-access-88fc-link__card:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-safely-access-88fc-link__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-safely-access-88fc-link__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-how-to-safely-access-88fc-link__card-text {
  font-size: 1em;
  color: #cccccc;
}

.page-resources-how-to-safely-access-88fc-link__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__list-item {
  background-color: #2a2a2a;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #ffffff;
}

.page-resources-how-to-safely-access-88fc-link__list-heading {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-how-to-safely-access-88fc-link__list-text {
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-how-to-safely-access-88fc-link__security-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__tip-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-resources-how-to-safely-access-88fc-link__tip-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-safely-access-88fc-link__tip-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-how-to-safely-access-88fc-link__tip-text {
  font-size: 1em;
  color: #cccccc;
}

.page-resources-how-to-safely-access-88fc-link__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__benefits-item {
  background-color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-how-to-safely-access-88fc-link__benefits-item::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-resources-how-to-safely-access-88fc-link__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__product-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-resources-how-to-safely-access-88fc-link__product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-safely-access-88fc-link__product-title {
  font-size: 1.8em;
  color: #26A9E0;
  padding: 15px 20px 10px;
}

.page-resources-how-to-safely-access-88fc-link__product-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-how-to-safely-access-88fc-link__product-title a:hover {
  text-decoration: underline;
}

.page-resources-how-to-safely-access-88fc-link__product-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-how-to-safely-access-88fc-link__faq-list {
  margin-top: 30px;
}

.page-resources-how-to-safely-access-88fc-link__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-how-to-safely-access-88fc-link__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  outline: none;
}

.page-resources-how-to-safely-access-88fc-link__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-how-to-safely-access-88fc-link__faq-qtext {
  flex-grow: 1;
}

.page-resources-how-to-safely-access-88fc-link__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-resources-how-to-safely-access-88fc-link__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-how-to-safely-access-88fc-link__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-how-to-safely-access-88fc-link__main-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-safely-access-88fc-link__section-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-safely-access-88fc-link__sub-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-safely-access-88fc-link {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-how-to-safely-access-88fc-link__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-resources-how-to-safely-access-88fc-link__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-resources-how-to-safely-access-88fc-link__intro-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-resources-how-to-safely-access-88fc-link__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-resources-how-to-safely-access-88fc-link__btn-primary,
  .page-resources-how-to-safely-access-88fc-link__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-how-to-safely-access-88fc-link__content-area {
    padding: 20px 15px;
    margin-top: -40px;
  }
  .page-resources-how-to-safely-access-88fc-link__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-resources-how-to-safely-access-88fc-link__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-resources-how-to-safely-access-88fc-link__paragraph,
  .page-resources-how-to-safely-access-88fc-link__list-text,
  .page-resources-how-to-safely-access-88fc-link__card-text,
  .page-resources-how-to-safely-access-88fc-link__tip-text,
  .page-resources-how-to-safely-access-88fc-link__benefits-item,
  .page-resources-how-to-safely-access-88fc-link__product-description,
  .page-resources-how-to-safely-access-88fc-link__faq-answer {
    font-size: 0.95em;
  }
  .page-resources-how-to-safely-access-88fc-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }
  .page-resources-how-to-safely-access-88fc-link__section,
  .page-resources-how-to-safely-access-88fc-link__card,
  .page-resources-how-to-safely-access-88fc-link__container,
  .page-resources-how-to-safely-access-88fc-link__grid-container,
  .page-resources-how-to-safely-access-88fc-link__security-tips,
  .page-resources-how-to-safely-access-88fc-link__product-grid,
  .page-resources-how-to-safely-access-88fc-link__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-resources-how-to-safely-access-88fc-link__hero-content {
    padding: 0 15px;
  }
  .page-resources-how-to-safely-access-88fc-link__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-resources-how-to-safely-access-88fc-link__faq-answer {
    padding: 0 15px 15px;
  }
  .page-resources-how-to-safely-access-88fc-link__list-item,
  .page-resources-how-to-safely-access-88fc-link__tip-item,
  .page-resources-how-to-safely-access-88fc-link__product-card {
    padding: 15px;
  }
  .page-resources-how-to-safely-access-88fc-link__list-heading,
  .page-resources-how-to-safely-access-88fc-link__card-title,
  .page-resources-how-to-safely-access-88fc-link__tip-title,
  .page-resources-how-to-safely-access-88fc-link__product-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-safely-access-88fc-link__main-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-safely-access-88fc-link__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-safely-access-88fc-link__intro-description {
    font-size: 0.9em;
  }
}