/* style/index-quick-access-guide.css */
.page-index-quick-access-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
}

.page-index-quick-access-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-quick-access-guide__hero-section {
  background: linear-gradient(135deg, #0A2E36 0%, #000000 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-index-quick-access-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-index-quick-access-guide__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-index-quick-access-guide__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-quick-access-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-quick-access-guide__cta-button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #0A2E36; /* Deep blue for text on gold */
}

.page-index-quick-access-guide__cta-button--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-quick-access-guide__cta-button--secondary {
  background-color: #0A2E36; /* Deep blue for secondary button */
  color: #FFD700; /* Gold for text on deep blue */
  border: 2px solid #FFD700;
}

.page-index-quick-access-guide__cta-button--secondary:hover {
  background-color: #1a4f5c; /* Slightly lighter blue on hover */
  transform: translateY(-3px);
}

.page-index-quick-access-guide__section {
  padding: 80px 0;
  background-color: #1A1A1A; /* Dark background for sections */
}

.page-index-quick-access-guide__section:nth-of-type(odd) {
  background-color: #0A2E36; /* Alternate section background */
}

.page-index-quick-access-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-quick-access-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #B0B0B0;
}

.page-index-quick-access-guide__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index-quick-access-guide__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-quick-access-guide__text-content {
  flex: 1;
  color: #E0E0E0;
}

.page-index-quick-access-guide__text-content h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-quick-access-guide__text-content p {
  margin-bottom: 15px;
}

.page-index-quick-access-guide__text-content ul {
  list-style: disc inside;
  margin-left: 20px;
}

.page-index-quick-access-guide__text-content li {
  margin-bottom: 8px;
}

.page-index-quick-access-guide__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-quick-access-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-quick-access-guide__step-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-quick-access-guide__step-card {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.page-index-quick-access-guide__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-quick-access-guide__step-icon-wrapper {
  margin-bottom: 20px;
  height: 80px; /* Fixed height for icon wrapper */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-quick-access-guide__step-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-index-quick-access-guide__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-quick-access-guide__step-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-index-quick-access-guide__step-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #0A2E36;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-index-quick-access-guide__step-button:hover {
  background-color: #e6c200;
}

.page-index-quick-access-guide__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-quick-access-guide__advantage-item {
  background-color: #0A2E36;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #1a4f5c;
}

.page-index-quick-access-guide__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-quick-access-guide__advantage-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-quick-access-guide__advantage-item p {
  color: #B0B0B0;
}

.page-index-quick-access-guide__faq-item {
  background-color: #0A2E36;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #1a4f5c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-quick-access-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-quick-access-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-quick-access-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-quick-access-guide__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-quick-access-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-index-quick-access-guide__call-to-action {
  background-color: #0A2E36;
  text-align: center;
  padding: 100px 0;
}

.page-index-quick-access-guide__call-to-action .page-index-quick-access-guide__section-title {
  color: #FFD700;
}

.page-index-quick-access-guide__call-to-action .page-index-quick-access-guide__section-description {
  color: #E0E0E0;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-quick-access-guide__hero-title {
    font-size: 2.8em;
  }

  .page-index-quick-access-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-quick-access-guide__section-title {
    font-size: 2em;
  }

  .page-index-quick-access-guide__content-grid {
    flex-direction: column;
  }
  
  .page-index-quick-access-guide__content-grid:nth-child(even) {
    flex-direction: column;
  }

  .page-index-quick-access-guide__image-wrapper {
    order: -1; /* Image appears above text on small screens */
    margin-bottom: 30px;
  }

  .page-index-quick-access-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-quick-access-guide__hero-title {
    font-size: 2.2em;
  }

  .page-index-quick-access-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-index-quick-access-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-quick-access-guide__section {
    padding: 60px 0;
  }

  .page-index-quick-access-guide__section-title {
    font-size: 1.8em;
  }

  .page-index-quick-access-guide__step-card-grid,
  .page-index-quick-access-guide__advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-quick-access-guide__hero-title {
    font-size: 1.8em;
  }

  .page-index-quick-access-guide__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-quick-access-guide__cta-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-index-quick-access-guide__section-title {
    font-size: 1.5em;
  }

  .page-index-quick-access-guide__step-card,
  .page-index-quick-access-guide__advantage-item,
  .page-index-quick-access-guide__faq-item {
    padding: 20px;
  }
}