.page-index-latest-offers-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #121A26; /* Darker background for overall page */
  line-height: 1.6;
}

.page-index-latest-offers-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-offers-overview__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-latest-offers-overview__section--dark {
  background-color: #1A2B3C; /* Primary dark color */
}

.page-index-latest-offers-overview__section--cta {
  background: linear-gradient(135deg, #1A2B3C, #0E1620);
}

.page-index-latest-offers-overview__hero {
  background: linear-gradient(135deg, #1A2B3C, #0E1620);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-offers-overview__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-index-latest-offers-overview__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent gold color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-index-latest-offers-overview__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-offers-overview__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.2;
  z-index: 1;
  transform: translateX(20%) translateY(20%);
}

.page-index-latest-offers-overview__hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-index-latest-offers-overview__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent gold color */
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-latest-offers-overview__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-latest-offers-overview__btn--primary {
  background-color: #FFD700; /* Accent gold color */
  color: #1A2B3C; /* Primary dark color for text */
  border: 2px solid #FFD700;
}

.page-index-latest-offers-overview__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-index-latest-offers-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent gold color */
  border: 2px solid #FFD700;
}

.page-index-latest-offers-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-index-latest-offers-overview__btn--lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-latest-offers-overview__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-offers-overview__feature-item {
  background-color: #243B52; /* Slightly lighter dark */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-offers-overview__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-latest-offers-overview__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.page-index-latest-offers-overview__feature-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-offers-overview__feature-item p {
  color: #C0C0C0;
}

.page-index-latest-offers-overview__offer-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-offers-overview__category-card {
  background-color: #1A2B3C; /* Primary dark color */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-latest-offers-overview__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-latest-offers-overview__category-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-latest-offers-overview__category-card h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-offers-overview__category-card p {
  color: #C0C0C0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-latest-offers-overview__current-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-index-latest-offers-overview__current-offers {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

.page-index-latest-offers-overview__offer-card {
  background-color: #243B52; /* Slightly lighter dark */
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-offers-overview__offer-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index-latest-offers-overview__offer-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #3A4E66;
}

.page-index-latest-offers-overview__offer-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-index-latest-offers-overview__offer-content h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-offers-overview__offer-content h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-latest-offers-overview__offer-content h3 a:hover {
  color: #E6C200;
}

.page-index-latest-offers-overview__offer-content p {
  color: #C0C0C0;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-latest-offers-overview__offer-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-latest-offers-overview__offer-content ul li {
  color: #B0B0B0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-index-latest-offers-overview__offer-content ul li::before {
  content: '✔️';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 0.9em;
}

.page-index-latest-offers-overview__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-offers-overview__step-item {
  background-color: #1A2B3C; /* Primary dark color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-offers-overview__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-latest-offers-overview__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700; /* Accent gold color */
  color: #1A2B3C; /* Primary dark color for text */
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-index-latest-offers-overview__step-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-offers-overview__step-item p {
  color: #C0C0C0;
}

.page-index-latest-offers-overview__step-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-offers-overview__step-item a:hover {
  text-decoration: underline;
}

.page-index-latest-offers-overview__cta-bottom {
  margin-top: 50px;
}

.page-index-latest-offers-overview__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-index-latest-offers-overview__terms-list li {
  background-color: #243B52;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #C0C0C0;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-index-latest-offers-overview__terms-list li::before {
  content: '•';
  color: #FFD700;
  position: absolute;
  left: 15px;
  font-size: 1.5em;
  line-height: 1;
}

.page-index-latest-offers-overview__responsible-image {
  max-width: 300px;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-offers-overview__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-offers-overview__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-offers-overview__section-title {
    font-size: 2em;
  }
  .page-index-latest-offers-overview__hero-image-wrapper {
    width: 60%;
    transform: translateX(15%) translateY(15%);
  }
}

@media (max-width: 768px) {
  .page-index-latest-offers-overview__hero {
    padding: 60px 0;
  }
  .page-index-latest-offers-overview__hero-image-wrapper {
    display: none;
  }
  .page-index-latest-offers-overview__offer-card {
    flex-direction: column;
    text-align: center;
  }
  .page-index-latest-offers-overview__offer-image {
    height: 180px;
  }
  .page-index-latest-offers-overview__offer-content {
    padding: 20px;
  }
  .page-index-latest-offers-overview__offer-content h3 {
    font-size: 1.4em;
  }
  .page-index-latest-offers-overview__offer-content ul {
    text-align: left;
  }
  .page-index-latest-offers-overview__btn--lg {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-offers-overview__hero-title {
    font-size: 2em;
  }
  .page-index-latest-offers-overview__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-offers-overview__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-offers-overview__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-latest-offers-overview__features,
  .page-index-latest-offers-overview__offer-categories,
  .page-index-latest-offers-overview__steps {
    grid-template-columns: 1fr;
  }
  .page-index-latest-offers-overview__section {
    padding: 40px 0;
  }
  .page-index-latest-offers-overview__offer-content ul li {
    padding-left: 15px;
  }
  .page-index-latest-offers-overview__offer-content ul li::before {
    left: -5px;
  }
}