/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-index__section-title {
  font-size: 2.5em;
  color: #0A2E5B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index__section-subtitle {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 60px;
}

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-index__btn--primary {
  background-color: #FFD700;
  color: #0A2E5B;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index__btn--secondary {
  background-color: transparent;
  color: #0A2E5B;
  border: 2px solid #0A2E5B;
}

.page-index__btn--secondary:hover {
  background-color: #0A2E5B;
  color: #FFFFFF;
}

.page-index__btn--text {
  background-color: transparent;
  color: #0A2E5B;
  border: none;
  padding: 8px 15px;
  font-weight: normal;
  text-decoration: underline;
}

.page-index__btn--text:hover {
  color: #FFD700;
}

.page-index__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-index__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0A2E5B 0%, #204A7D 100%);
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.page-index__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-index__hero-image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700;
}

.page-index__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-index__hero-actions .page-index__btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.page-index__hero-actions .page-index__btn--secondary {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-index__hero-actions .page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2E5B;
  border-color: #FFD700;
}

/* About Section */
.page-index__about-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index__about-text {
  flex: 1;
}

.page-index__about-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-index__about-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-index__features-section {
  padding: 80px 0;
  background-color: #f4f7f6;
}

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

.page-index__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-10px);
}

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #0A2E5B;
  margin-bottom: 15px;
}

.page-index__feature-description {
  color: #666;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 0;
  background-color: #0A2E5B;
  color: #FFFFFF;
}

.page-index__promotions-section .page-index__section-title {
  color: #FFFFFF;
}

.page-index__promotions-section .page-index__section-title::after {
  background-color: #FFD700;
}

.page-index__promotions-section .page-index__section-subtitle {
  color: #e0e0e0;
}

.page-index__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-index__promo-card {
  background-color: #1a3c6b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-index__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 0 20px 10px;
}

.page-index__promo-description {
  color: #cccccc;
  margin: 0 20px 20px;
}

.page-index__promo-card .page-index__btn {
  background-color: #FFD700;
  color: #0A2E5B;
  border: none;
}

.page-index__promo-card .page-index__btn:hover {
  background-color: #e6c200;
}

.page-index__view-all-promos {
  text-align: center;
}

.page-index__view-all-promos .page-index__btn--text {
  color: #FFD700;
}

.page-index__view-all-promos .page-index__btn--text:hover {
  color: #FFFFFF;
}

/* Guides Section */
.page-index__guides-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__guide-card {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index__guide-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3em;
  color: #0A2E5B;
}

.page-index__guide-card h3 a {
  text-decoration: none;
  color: inherit;
}

.page-index__guide-card h3 a:hover {
  color: #FFD700;
}

.page-index__guide-description {
  padding: 0 20px 15px;
  color: #555;
}

.page-index__guide-card .page-index__btn--text {
  display: block;
  margin: 0 20px 20px;
  text-align: left;
}

/* CTA Section */
.page-index__cta-section {
  background-color: #FFD700;
  padding: 60px 0;
  text-align: center;
  color: #0A2E5B;
}

.page-index__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-index__cta-section .page-index__btn--primary {
  background-color: #0A2E5B;
  color: #FFD700;
  border-color: #0A2E5B;
}

.page-index__cta-section .page-index__btn--primary:hover {
  background-color: #204A7D;
  border-color: #204A7D;
}

/* Detail Pages Section */
.page-index__detail-pages-section {
  padding: 80px 0;
  background-color: #f4f7f6;
}

.page-index__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__detail-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index__detail-title {
  font-size: 1.4em;
  color: #0A2E5B;
  margin-bottom: 10px;
}

.page-index__detail-title a {
  text-decoration: none;
  color: inherit;
}

.page-index__detail-title a:hover {
  color: #FFD700;
}

.page-index__detail-description {
  color: #555;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-section {
    padding: 80px 0;
  }
  .page-index__hero-content {
    padding-right: 20px;
  }
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__content-grid {
    flex-direction: column;
  }
  .page-index__about-text, .page-index__about-image-wrapper {
    padding-right: 0;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__cta-title {
    font-size: 2.2em;
  }
  .page-index__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-index__hero-content {
    padding-right: 0;
    margin-top: 40px;
  }
  .page-index__hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-index__hero-actions .page-index__btn {
    margin-right: 0;
    width: 80%;
    max-width: 300px;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__section-subtitle {
    font-size: 1em;
  }
  .page-index__cta-title {
    font-size: 1.8em;
  }
  .page-index__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__section-subtitle {
    font-size: 0.9em;
  }
  .page-index__promo-title, .page-index__feature-title, .page-index__guide-card h3, .page-index__detail-title {
    font-size: 1.2em;
  }
  .page-index__cta-title {
    font-size: 1.5em;
  }
}