.page-promotions {
  background-color: #F4F7FB; /* Background color */
  color: #1F2D3D; /* Text Main */
  padding-top: 10px; /* Small top padding to respect header offset handled by body */
}

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

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Image above, text below */
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Card BG, or could be a darker tone if needed */
  border-bottom: 1px solid #D6E2FF; /* Border */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  max-width: 800px;
  margin: 0 auto 15px;
  /* No fixed font-size for H1, relying on shared or browser defaults, or clamp if needed */
}

.page-promotions__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

/* Grid Section */
.page-promotions__grid-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-promotions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px; /* Ensure some spacing from previous section */
}

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

.page-promotions__promotion-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__card-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  transition: background 0.2s ease-in-out;
  align-self: flex-start; /* Align button to start of flex container */
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Lighter blue on hover */
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
  border-top: 1px solid #D6E2FF; /* Border */
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #F4F7FB; /* Background */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em); /* H1 clamp for mobile */
    margin-bottom: 10px;
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__card-description {
    font-size: 0.95em;
  }

  .page-promotions__card-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
  }

  .page-promotions__faq-answer {
    font-size: 0.95em;
  }

  /* Mobile image overflow prevention */
  .page-promotions__hero-image,
  .page-promotions__card-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are not smaller than 200px */
  .page-promotions img {
    min-width: 200px;
    min-height: 200px;
  }
}