.page-brand-navigation {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1E2E; /* A slightly lighter dark blue for overall background */
  line-height: 1.6;
}

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

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

.page-brand-navigation__section:nth-of-type(odd) {
  background-color: #1A2E44; /* Main dark blue for alternating sections */
}

.page-brand-navigation__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-brand-navigation__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Lighter grey for descriptions */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-brand-navigation__hero {
  position: relative;
  background: linear-gradient(135deg, #1A2E44 0%, #0F1E2E 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.page-brand-navigation__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-brand-navigation__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-brand-navigation__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.page-brand-navigation__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-brand-navigation__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-brand-navigation__btn--primary:hover {
  background-color: #E0B300;
  transform: translateY(-3px);
}

.page-brand-navigation__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-brand-navigation__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
}

/* About Section */
.page-brand-navigation__about {
  background-color: #0F1E2E;
  padding: 80px 0;
}

.page-brand-navigation__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

@media (min-width: 768px) {
  .page-brand-navigation__content-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-brand-navigation__image-right {
    order: 2;
  }
}

.page-brand-navigation__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #B0B0B0;
}

.page-brand-navigation__image-right {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Partner and Detail Pages List Section */
.page-brand-navigation__partners {
  background-color: #1A2E44;
  padding: 80px 0;
}

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

.page-brand-navigation__detail-card {
  background-color: #0F1E2E;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-brand-navigation__detail-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-brand-navigation__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-brand-navigation__detail-card-title a:hover {
  color: #E0B300;
}

.page-brand-navigation__detail-card-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-brand-navigation__btn--detail {
  background-color: #1A2E44;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-brand-navigation__btn--detail:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

/* Why Choose Section */
.page-brand-navigation__why-choose {
  background-color: #0F1E2E;
  padding: 80px 0;
}

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

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

.page-brand-navigation__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-brand-navigation__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

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

.page-brand-navigation__benefit-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Responsible Gambling Section */
.page-brand-navigation__responsible-gambling {
  background-color: #1A2E44;
  padding: 80px 0;
}

.page-brand-navigation__content-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: left;
}

@media (min-width: 768px) {
  .page-brand-navigation__content-flex {
    flex-direction: row;
    text-align: left;
  }
  .page-brand-navigation__image-left {
    order: 1;
    flex: 1;
  }
  .page-brand-navigation__text-content {
    flex: 1;
  }
}

.page-brand-navigation__image-left {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-brand-navigation__responsible-gambling .page-brand-navigation__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #B0B0B0;
}

/* Call to Action Section */
.page-brand-navigation__cta {
  position: relative;
  background: linear-gradient(135deg, #0F1E2E 0%, #1A2E44 100%);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}

.page-brand-navigation__cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-brand-navigation__cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-brand-navigation__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-brand-navigation__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-brand-navigation__hero-title {
    font-size: 3em;
  }
  .page-brand-navigation__section-title {
    font-size: 2em;
  }
  .page-brand-navigation__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-brand-navigation__hero {
    min-height: 500px;
    padding: 80px 0;
  }
  .page-brand-navigation__hero-title {
    font-size: 2.5em;
  }
  .page-brand-navigation__hero-description {
    font-size: 1.1em;
  }
  .page-brand-navigation__section {
    padding: 50px 0;
  }
  .page-brand-navigation__section-title {
    font-size: 1.8em;
  }
  .page-brand-navigation__section-description {
    font-size: 1em;
  }
  .page-brand-navigation__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-brand-navigation__content-grid, .page-brand-navigation__content-flex {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
  .page-brand-navigation__image-right, .page-brand-navigation__image-left {
    order: initial;
    max-width: 100%;
  }
  .page-brand-navigation__detail-card-title, .page-brand-navigation__benefit-title {
    font-size: 1.5em;
  }
  .page-brand-navigation__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-brand-navigation__hero-title {
    font-size: 2em;
  }
  .page-brand-navigation__hero-description {
    font-size: 0.95em;
  }
  .page-brand-navigation__hero-actions, .page-brand-navigation__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-brand-navigation__btn {
    width: 100%;
  }
  .page-brand-navigation__section-title {
    font-size: 1.5em;
  }
  .page-brand-navigation__detail-pages-list, .page-brand-navigation__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-brand-navigation__cta-title {
    font-size: 1.8em;
  }
  .page-brand-navigation__cta-description {
    font-size: 1em;
  }
}