.page-promo {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__section--unveiling {
  background-color: #f8f8f8;
}

.page-promo__section--maximize,
.page-promo__section--types {
  background-color: #ffffff;
}

.page-promo__section--advantage {
  background-color: #f8f8f8;
}

.page-promo__section--get-started {
  background-color: #ffffff;
}

.page-promo__section--responsible-gaming {
  background-color: #f8f8f8;
}

.page-promo__section--conclusion {
  background-color: #000000;
  color: #ffffff;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section--conclusion .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__section--conclusion .page-promo__section-intro {
  color: #e0e0e0;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 900px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-promo__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo__button--small:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo__button--tertiary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo__button--tertiary:hover {
  background-color: #333333;
  border-color: #333333;
}

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

.page-promo__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.page-promo__grid-image {
  width: 100%;
  height: 200px; /* Minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__grid-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__grid-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-promo__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.page-promo__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__cta-area {
  margin-top: 50px;
}

.page-promo__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-promo__type-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.page-promo__type-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__type-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promo__advantage-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.page-promo__advantage-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__advantage-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promo__step-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promo__step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__step-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-promo__responsible-image {
  flex: 1 1 400px;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__responsible-text {
  flex: 2 1 500px;
}

.page-promo__responsible-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__responsible-paragraph {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-container {
    height: 500px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__section {
    padding: 40px 0;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__grid,
  .page-promo__feature-grid,
  .page-promo__type-grid,
  .page-promo__advantage-list,
  .page-promo__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__grid-item, .page-promo__feature-item, .page-promo__type-item, .page-promo__advantage-item, .page-promo__step-item {
    padding: 20px;
  }
  .page-promo__grid-image,
  .page-promo__responsible-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-promo__responsible-content {
    flex-direction: column;
    gap: 20px;
  }
  .page-promo__responsible-image {
    order: -1; /* Image first on mobile */
  }
  .page-promo__responsible-text {
    flex: none;
    width: 100%;
  }
  /* Ensure all content area images are responsive */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-container {
    height: 400px;
  }
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__grid-title,
  .page-promo__feature-title,
  .page-promo__type-title,
  .page-promo__advantage-title,
  .page-promo__step-title,
  .page-promo__responsible-subtitle {
    font-size: 1.4em;
  }
}