.page-index {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8;
  line-height: 1.6;
  background-color: #0A192F;
  overflow-x: hidden;
}

.page-index-highlight {
  color: #E0B400;
}

.page-index-text-link {
  color: #E0B400;
  text-decoration: none;
  font-weight: bold;
}

.page-index-text-link:hover {
  text-decoration: underline;
  color: #f5e6d0; /* Lighter variant for hover */
}

.page-index-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #f8f8f8;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-section-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #cccccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-hero {
  background: linear-gradient(135deg, #0A192F 0%, #20355a 100%);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-index-hero-content {
  z-index: 10;
  max-width: 900px;
}

.page-index-hero-title {
  font-size: 4em;
  color: #f8f8f8;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hero-description {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-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-btn-primary {
  background-color: #E0B400;
  color: #0A192F;
}

.page-index-btn-primary:hover {
  background-color: #f5e6d0; /* Lighter variant for hover */
  transform: translateY(-3px);
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-index-btn-secondary:hover {
  background-color: #E0B400;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-index-hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 800px;
  opacity: 0.7;
  z-index: 5;
}

.page-index-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Grid Section (Offerings) */
.page-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-index-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-item-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #E0B400;
}

.page-index-item-title {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-index-item-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-index-btn-outline {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-btn-outline:hover {
  background-color: #E0B400;
  color: #0A192F;
}

/* Content with Image Sections */
.page-index-content-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 50px;
}

.page-index-content-left {
  flex-direction: row;
}

.page-index-content-right {
  flex-direction: row-reverse;
}

.page-index-content-with-image .page-index-text-content {
  flex: 1;
}

.page-index-content-with-image .page-index-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-index-section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid #E0B400;
}

/* Customer Service */
.page-index-contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-index-contact-info p {
  margin-bottom: 10px;
}

/* Detail Page List */
.page-index-explore-more .page-index-section-description {
  margin-bottom: 40px;
}

.page-index-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-detail-item {
  background-color: #1a2a47;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E0B400;
  transition: transform 0.3s ease;
}

.page-index-detail-item:hover {
  transform: translateY(-5px);
}

.page-index-detail-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-index-detail-title a {
  color: #E0B400;
  text-decoration: none;
}

.page-index-detail-title a:hover {
  text-decoration: underline;
  color: #f5e6d0;
}

.page-index-detail-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-index-btn-link {
  background-color: transparent;
  color: #E0B400;
  padding: 8px 0;
  font-size: 0.9em;
  text-align: left;
  display: inline-block;
}

.page-index-btn-link:hover {
  text-decoration: underline;
  color: #f5e6d0;
}

/* CTA Section */
.page-index-cta {
  background-color: #E0B400;
  padding: 80px 20px;
  text-align: center;
  color: #0A192F;
}

.page-index-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A192F;
  font-weight: 900;
}

.page-index-cta-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-hero-title {
    font-size: 3.5em;
  }
  .page-index-section-title {
    font-size: 2.2em;
  }
  .page-index-cta-title {
    font-size: 2.5em;
  }
  .page-index-content-with-image {
    flex-direction: column;
    text-align: center;
  }
  .page-index-content-with-image .page-index-text-content,
  .page-index-content-with-image .page-index-image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-index-content-with-image.page-index-content-right {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-hero {
    padding: 80px 20px;
  }
  .page-index-hero-title {
    font-size: 2.5em;
  }
  .page-index-hero-description {
    font-size: 1.2em;
  }
  .page-index-hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-section-title {
    font-size: 1.8em;
  }
  .page-index-section-description {
    font-size: 1em;
  }
  .page-index-grid {
    grid-template-columns: 1fr;
  }
  .page-index-item-image {
    height: 180px;
  }
  .page-index-cta-title {
    font-size: 2em;
  }
  .page-index-cta-description {
    font-size: 1.1em;
  }
  .page-index-hero-image-wrapper {
    width: 70%;
  }
}

@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.6em;
  }
  .page-index-item-title {
    font-size: 1.5em;
  }
  .page-index-cta-title {
    font-size: 1.8em;
  }
  .page-index-hero-image-wrapper {
    width: 90%;
  }
}