/* style/index-quick-access.css */
.page-index-quick-access {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-index-quick-access__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-quick-access__section:nth-child(even) {
  background-color: #f0f5fa; /* Lighter shade of blue for contrast */
}

.page-index-quick-access__section-title {
  font-size: 2.8em;
  color: #003366; /* Deep Blue */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-quick-access__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Golden Yellow */
  border-radius: 2px;
}

.page-index-quick-access__hero {
  background: linear-gradient(135deg, #003366, #001a33); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-quick-access__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFCC00; /* Golden Yellow for prominence */
}

.page-index-quick-access__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
}

.page-index-quick-access__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-quick-access__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-quick-access__btn--primary {
  background-color: #FFCC00; /* Golden Yellow */
  color: #003366; /* Deep Blue */
}

.page-index-quick-access__btn--primary:hover {
  background-color: #e6b800; /* Darker yellow on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-access__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Golden Yellow */
  border: 2px solid #FFCC00;
}

.page-index-quick-access__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-access__btn--link {
  background-color: transparent;
  color: #003366;
  border: 1px solid #003366;
  padding: 8px 15px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-index-quick-access__btn--link:hover {
  background-color: #003366;
  color: #fff;
}

.page-index-quick-access__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-index-quick-access__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.page-index-quick-access__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-index-quick-access__hero > .page-index-quick-access__container {
  position: relative;
  z-index: 1;
}

.page-index-quick-access__features {
  background-color: #fff;
}

.page-index-quick-access__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-access__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-quick-access__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-access__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-quick-access__feature-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-quick-access__feature-item p {
  color: #555;
  font-size: 1.05em;
}

.page-index-quick-access__center-cta {
  margin-top: 60px;
}

.page-index-quick-access__app-download {
  background-color: #003366; /* Deep Blue */
  color: #fff;
}

.page-index-quick-access__app-download .page-index-quick-access__section-title {
  color: #FFCC00; /* Golden Yellow */
}

.page-index-quick-access__app-download .page-index-quick-access__section-title::after {
  background-color: #fff;
}

.page-index-quick-access__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-quick-access__app-text {
  flex: 1;
}

.page-index-quick-access__app-text p {
  font-size: 1.15em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-quick-access__app-image {
  flex: 1;
  text-align: center;
}

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

.page-index-quick-access__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-quick-access__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  color: #fff;
}

.page-index-quick-access__list-icon {
  color: #FFCC00; /* Golden Yellow */
  font-size: 1.4em;
  margin-right: 10px;
  line-height: 1;
}

.page-index-quick-access__guide {
  background-color: #fff;
}

.page-index-quick-access__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-access__step-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-quick-access__step-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-quick-access__step-number {
  width: 60px;
  height: 60px;
  background-color: #003366; /* Deep Blue */
  color: #FFCC00; /* Golden Yellow */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #FFCC00;
}

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

.page-index-quick-access__step-item p {
  color: #666;
  margin-bottom: 20px;
}

.page-index-quick-access__advantages {
  background-color: #f0f5fa;
}

.page-index-quick-access__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-quick-access__advantage-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-index-quick-access__advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-access__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-index-quick-access__advantage-item h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-quick-access__advantage-item p {
  color: #555;
  font-size: 1.05em;
}

.page-index-quick-access__faq {
  background-color: #fff;
}

.page-index-quick-access__faq-item {
  text-align: left;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-index-quick-access__faq-item:last-child {
  border-bottom: none;
}

.page-index-quick-access__faq-question {
  font-size: 1.5em;
  color: #003366;
  cursor: pointer;
  margin-bottom: 10px;
}

.page-index-quick-access__faq-answer {
  font-size: 1.1em;
  color: #444;
  padding-left: 20px;
  display: block; /* Ensure it's block for proper spacing */
}

.page-index-quick-access__final-cta {
  background: linear-gradient(135deg, #FFCC00, #e6b800); /* Golden Yellow gradient */
  color: #003366; /* Deep Blue text */
  padding: 80px 0;
}

.page-index-quick-access__final-cta .page-index-quick-access__section-title {
  color: #003366;
}

.page-index-quick-access__final-cta .page-index-quick-access__section-title::after {
  background-color: #003366;
}

.page-index-quick-access__final-cta p {
  font-size: 1.25em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #003366;
}

.page-index-quick-access__final-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-access__hero-title {
    font-size: 3em;
  }
  .page-index-quick-access__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-quick-access__section-title {
    font-size: 2.2em;
  }
  .page-index-quick-access__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-access__app-image {
    margin-top: 40px;
  }
  .page-index-quick-access__advantage-item, .page-index-quick-access__feature-item, .page-index-quick-access__step-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-index-quick-access__hero {
    padding: 80px 0;
  }
  .page-index-quick-access__hero-title {
    font-size: 2.5em;
  }
  .page-index-quick-access__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-quick-access__hero-actions {
    flex-direction: column;
  }
  .page-index-quick-access__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-index-quick-access__section {
    padding: 40px 0;
  }
  .page-index-quick-access__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-access__feature-grid, .page-index-quick-access__guide-steps, .page-index-quick-access__advantage-grid {
    grid-template-columns: 1fr;
  }
  .page-index-quick-access__app-text p, .page-index-quick-access__list li, .page-index-quick-access__advantage-item p, .page-index-quick-access__faq-answer, .page-index-quick-access__final-cta p {
    font-size: 1em;
  }
  .page-index-quick-access__final-actions {
    flex-direction: column;
  }
  .page-index-quick-access__btn--large {
    width: 80%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .page-index-quick-access__hero-title {
    font-size: 2em;
  }
  .page-index-quick-access__hero-subtitle {
    font-size: 0.95em;
  }
  .page-index-quick-access__section-title {
    font-size: 1.6em;
  }
  .page-index-quick-access__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-quick-access__feature-title, .page-index-quick-access__step-title, .page-index-quick-access__advantage-item h3, .page-index-quick-access__faq-question {
    font-size: 1.4em;
  }
  .page-index-quick-access__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}