.page-blog-how-to-choose-best-access-link {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background);
}

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

.page-blog-how-to-choose-best-access-link__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  background-color: var(--card-bg);
  overflow: hidden;
}

.page-blog-how-to-choose-best-access-link__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-access-link__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-choose-best-access-link__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-access-link__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Using clamp for responsive H1 */
}

.page-blog-how-to-choose-best-access-link__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.page-blog-how-to-choose-best-access-link__btn-primary,
.page-blog-how-to-choose-best-access-link__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-blog-how-to-choose-best-access-link__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-how-to-choose-best-access-link__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-how-to-choose-best-access-link__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-blog-how-to-choose-best-access-link__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-blog-how-to-choose-best-access-link__content-section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-blog-how-to-choose-best-access-link__section-title {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-how-to-choose-best-access-link__sub-title {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-how-to-choose-best-access-link__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-access-link__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-best-access-link__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-access-link__list-item {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 30px;
}

.page-blog-how-to-choose-best-access-link__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow);
  font-weight: bold;
}

.page-blog-how-to-choose-best-access-link__faq-list {
  margin-top: 40px;
}

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

.page-blog-how-to-choose-best-access-link__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-main);
  transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-best-access-link__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-best-access-link__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-choose-best-access-link__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-blog-how-to-choose-best-access-link__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--glow);
  margin-left: 15px;
}

.page-blog-how-to-choose-best-access-link__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-how-to-choose-best-access-link__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-how-to-choose-best-access-link__container {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-best-access-link__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-how-to-choose-best-access-link__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-best-access-link__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-choose-best-access-link__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-choose-best-access-link__btn-primary,
  .page-blog-how-to-choose-best-access-link__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-how-to-choose-best-access-link__content-section {
    padding: 40px 0;
  }

  .page-blog-how-to-choose-best-access-link__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-choose-best-access-link__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-best-access-link__paragraph,
  .page-blog-how-to-choose-best-access-link__list-item {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-best-access-link__content-image {
    margin: 20px 0;
  }

  .page-blog-how-to-choose-best-access-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-choose-best-access-link__section,
  .page-blog-how-to-choose-best-access-link__card,
  .page-blog-how-to-choose-best-access-link__container,
  .page-blog-how-to-choose-best-access-link__hero-section,
  .page-blog-how-to-choose-best-access-link__hero-image-wrapper,
  .page-blog-how-to-choose-best-access-link__hero-content,
  .page-blog-how-to-choose-best-access-link__cta-buttons,
  .page-blog-how-to-choose-best-access-link__faq-list,
  .page-blog-how-to-choose-best-access-link__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  
  .page-blog-how-to-choose-best-access-link__faq-item summary {
    padding: 15px;
  }

  .page-blog-how-to-choose-best-access-link__faq-answer {
    padding: 0 15px 15px 15px;
  }
}