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

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

.page-index__section-title {
  color: #0A2463;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  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-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #33508F 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__hero-section .page-index__container {
  position: relative;
  z-index: 10;
}

.page-index__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.page-index__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 800px;
  height: auto;
  opacity: 0.2;
  z-index: 5;
}

/* Buttons */
.page-index__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

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

.page-index__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index__btn--secondary:hover {
  background-color: #071a47;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-index__btn--tertiary {
  background-color: #f0f0f0;
  color: #0A2463;
  border: 1px solid #ddd;
}

.page-index__btn--tertiary:hover {
  background-color: #e0e0e0;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.page-index__btn--final-cta {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 60px;
}

.page-index__btn--final-cta:hover {
  background-color: #e6c200;
  color: #0A2463;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #0A2463;
  color: #FFD700;
  border: 1px solid #0A2463;
}

.page-index__btn--small:hover {
  background-color: #071a47;
  color: #FFD700;
  transform: translateY(-2px);
}

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

.page-index__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-index__about-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-index__text-content {
  flex: 2;
  font-size: 1.1em;
  color: #444;
}

.page-index__text-content p {
  margin-bottom: 20px;
}

.page-index__checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index__checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1em;
  color: #333;
}

.page-index__checklist li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

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

.page-index__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-index__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__promo-card-title {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index__promo-card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Platforms Section */
.page-index__platforms-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-index__platform-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-index__platform-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__platform-card-title {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index__platform-card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-index__guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-index__link-guide {
  display: block;
  background-color: #0A2463;
  color: #FFD700;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #0A2463;
}

.page-index__link-guide:hover {
  background-color: #071a47;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* News Section */
.page-index__news-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-index__news-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-index__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-index__news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.page-index__news-card-title {
  font-size: 1.4em;
  color: #0A2463;
  margin: 20px 20px 10px 20px;
}

.page-index__news-card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-index__news-card-title a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-index__news-card-description {
  font-size: 0.95em;
  color: #666;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index__link-readmore {
  display: inline-block;
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.page-index__link-readmore:hover {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

/* General 'View More' link style */
.page-index__link-more {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-index__link-more:hover {
  color: #FFD700;
  transform: translateX(5px);
}

/* CTA Section */
.page-index__cta-section {
  background: linear-gradient(90deg, #0A2463 0%, #1A3E7D 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-index__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Subpages List Section */
.page-index__subpages-list {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-index__subpage-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__subpage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-index__subpage-card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index__subpage-card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-index__subpage-card-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-index__subpage-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 3em;
  }

  .page-index__hero-description {
    font-size: 1.1em;
  }

  .page-index__hero-image {
    width: 60%;
  }

  .page-index__section-title {
    font-size: 2em;
  }

  .page-index__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-index__about-image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .page-index__cta-title {
    font-size: 2.2em;
  }

  .page-index__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 80px 0;
  }

  .page-index__hero-title {
    font-size: 2.5em;
  }

  .page-index__hero-description {
    font-size: 1em;
  }

  .page-index__hero-image {
    position: static;
    width: 80%;
    margin-top: 40px;
    opacity: 0.5;
  }

  .page-index__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index__btn--final-cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index__section-title {
    font-size: 1.8em;
  }

  .page-index__section-description {
    font-size: 1em;
  }

  .page-index__promo-grid, .page-index__platform-grid, .page-index__news-grid, .page-index__subpage-grid {
    grid-template-columns: 1fr;
  }

  .page-index__cta-title {
    font-size: 1.8em;
  }

  .page-index__cta-description {
    font-size: 1em;
  }

  .page-index__checklist li {
    font-size: 0.95em;
  }

  .page-index__link-guide {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}