/* style/promotions-vip-exclusive-offers.css */
.page-promotions-vip-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

.page-promotions-vip-exclusive-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-vip-exclusive-offers__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-vip-exclusive-offers__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-promotions-vip-exclusive-offers h1,
.page-promotions-vip-exclusive-offers h2 {
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-offers h1 {
  font-size: 2.8em;
  line-height: 1.2;
}

.page-promotions-vip-exclusive-offers h2 {
  font-size: 2.2em;
  margin-top: 40px;
}

.page-promotions-vip-exclusive-offers h3 {
  color: #003366;
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-offers h4 {
  color: #003366;
  font-size: 1.3em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-promotions-vip-exclusive-offers p {
  margin-bottom: 20px;
  color: #444444;
}

.page-promotions-vip-exclusive-offers__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.page-promotions-vip-exclusive-offers__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-promotions-vip-exclusive-offers__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-promotions-vip-exclusive-offers__button--secondary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-promotions-vip-exclusive-offers__button--secondary:hover {
  background-color: #003366;
  color: #FFCC00;
  transform: translateY(-2px);
}

.page-promotions-vip-exclusive-offers__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-promotions-vip-exclusive-offers__hero {
  background: linear-gradient(135deg, #003366 0%, #002244 100%);
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-exclusive-offers__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.page-promotions-vip-exclusive-offers__hero h1 {
  color: #FFCC00;
  font-size: 3.5em;
  margin-bottom: 25px;
}

.page-promotions-vip-exclusive-offers__hero p {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions-vip-exclusive-offers__cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-vip-exclusive-offers__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 600px; /* Max size of image */
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
}

.page-promotions-vip-exclusive-offers__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.page-promotions-vip-exclusive-offers__section--benefits {
  background-color: #ffffff;
}

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

.page-promotions-vip-exclusive-offers__benefit-card {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-exclusive-offers__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-exclusive-offers__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers__benefit-card h3 {
  color: #003366;
  font-size: 1.5em;
  margin-top: 0;
}

.page-promotions-vip-exclusive-offers__benefit-card p {
  color: #555555;
}

/* Levels Section */
.page-promotions-vip-exclusive-offers__section--levels {
  background-color: #f4f4f4;
}

.page-promotions-vip-exclusive-offers__image-full-width {
  margin: 40px auto;
  max-width: 1000px; /* Adjust max width for the image */
}

.page-promotions-vip-exclusive-offers__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Offers Section */
.page-promotions-vip-exclusive-offers__section--offers {
  background-color: #ffffff;
}

.page-promotions-vip-exclusive-offers__offer-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-promotions-vip-exclusive-offers__offer-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-promotions-vip-exclusive-offers__offer-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-exclusive-offers__offer-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-offers__offer-item h4 {
  color: #003366;
  font-size: 1.4em;
  margin-top: 0;
}

.page-promotions-vip-exclusive-offers__offer-item p {
  color: #555555;
}

.page-promotions-vip-exclusive-offers__cta-center {
  margin-top: 50px;
}

/* Join Section */
.page-promotions-vip-exclusive-offers__section--join {
  background-color: #f0f8ff;
}

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

.page-promotions-vip-exclusive-offers__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-promotions-vip-exclusive-offers__step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers__step-card h3 {
  color: #003366;
  font-size: 1.4em;
  margin-top: 0;
}

/* Security Section */
.page-promotions-vip-exclusive-offers__section--security {
  background-color: #003366;
  color: #ffffff;
}

.page-promotions-vip-exclusive-offers__section--security h2,
.page-promotions-vip-exclusive-offers__section--security h3 {
  color: #FFCC00;
}

.page-promotions-vip-exclusive-offers__section--security p {
  color: #f0f0f0;
}

.page-promotions-vip-exclusive-offers__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions-vip-exclusive-offers__security-list li {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.1em;
}

.page-promotions-vip-exclusive-offers__security-list img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(1) brightness(1.5);
}

/* App Download Section */
.page-promotions-vip-exclusive-offers__section--app-download {
  background-color: #FFCC00;
  color: #003366;
}

.page-promotions-vip-exclusive-offers__section--app-download h2 {
  color: #003366;
}

.page-promotions-vip-exclusive-offers__section--app-download p {
  color: #003366;
}

.page-promotions-vip-exclusive-offers__container--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
}

.page-promotions-vip-exclusive-offers__app-content {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.page-promotions-vip-exclusive-offers__app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions-vip-exclusive-offers__app-image img {
  max-width: 80%;
  height: auto;
}

/* Contact Section */
.page-promotions-vip-exclusive-offers__section--contact {
  background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-vip-exclusive-offers__hero h1 {
    font-size: 2.8em;
  }
  .page-promotions-vip-exclusive-offers h2 {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive-offers h3 {
    font-size: 1.4em;
  }
  .page-promotions-vip-exclusive-offers__hero-image-wrapper {
    width: 60%;
  }
  .page-promotions-vip-exclusive-offers__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-vip-exclusive-offers__app-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-offers__hero {
    padding: 60px 0;
  }
  .page-promotions-vip-exclusive-offers__hero h1 {
    font-size: 2.2em;
  }
  .page-promotions-vip-exclusive-offers__hero p {
    font-size: 1em;
  }
  .page-promotions-vip-exclusive-offers__section {
    padding: 40px 0;
  }
  .page-promotions-vip-exclusive-offers__grid,
  .page-promotions-vip-exclusive-offers__offer-list,
  .page-promotions-vip-exclusive-offers__step-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-exclusive-offers__hero-image-wrapper {
    display: none; /* Hide image on smaller screens if it obstructs content */
  }
  .page-promotions-vip-exclusive-offers__cta-group {
    flex-direction: column;
  }
  .page-promotions-vip-exclusive-offers__button {
    width: 80%;
    margin: 10px auto;
  }
  .page-promotions-vip-exclusive-offers__security-list li {
    font-size: 1em;
    padding: 10px 15px;
  }
}