.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding for first content section */
}

.page-index__promo-hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__promo-hero-card-link {
  text-decoration: none;
  display: block;
}

.page-index__promo-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  background: #111111; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
}

.page-index__promo-hero-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
}

.page-index__promo-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index__promo-hero-content {
  padding: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-index__promo-hero-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Primary color */
  line-height: 1.2;
}

.page-index__promo-hero-subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFD36B; /* Auxiliary color */
}

.page-index__promo-hero-desc {
  font-size: 16px;
  margin-bottom: 25px;
  color: #FFF6D6; /* Text Main */
}