/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

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

.page-promotions__hero {
  background-image: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-promotions__hero-content {
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

.page-promotions__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text */
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-promotions__section:nth-child(even) {
  background-color: #fcfcfc;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue title */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__section-intro {
  font-size: 1.15em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.page-promotions__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 30px auto 0;
  text-align: justify;
  color: #444;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
}

.page-promotions__list li {
  background-color: #e6f0fa; /* Lighter blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #003366;
  border-left: 5px solid #FFD700;
}

.page-promotions__list li strong {
  color: #003366;
  margin-right: 10px;
}

.page-promotions__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px;
  background-color: #003366; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions__cta-button:hover {
  background-color: #004d99;
  transform: translateY(-2px);
}

.page-promotions__cta-button--large {
  font-size: 1.6em;
  padding: 20px 40px;
}

.page-promotions__cta-button--download {
  background-color: #FFD700;
  color: #003366;
}

.page-promotions__cta-button--download:hover {
  background-color: #e6c200;
  color: #003366;
}

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

.page-promotions__type-card {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions__type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__type-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions__type-card h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__type-card p {
  font-size: 1em;
  color: #555;
}

.page-promotions__offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__offer-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
  width: 35%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.page-promotions__offer-content {
  padding: 30px;
  flex-grow: 1;
}

.page-promotions__offer-content h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__offer-content p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

.page-promotions__offer-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__offer-cta:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__how-to-participate .page-promotions__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__how-to-participate .page-promotions__steps-list li {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon {
  background-color: #003366;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-icon img {
  width: 45px;
  height: 45px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(287deg) brightness(100%) contrast(100%); /* White color for icon */
}

.page-promotions__how-to-participate .page-promotions__steps-list h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}