:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --page-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for light background */
    background-color: var(--page-bg); /* Page background */
}

/* --- Hero Section --- */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width on desktop for max-width to work */
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px; /* Slightly larger border-radius for hero */
    object-fit: cover;
    box-shadow: 0 10px 30px var(--shadow-medium);
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Constrain content width */
    padding: 0 20px;
}

.page-promotions__hero-content h1 {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.page-promotions__hero-content p {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 25px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box; /* Button responsive */
    white-space: normal; /* Button responsive */
    word-wrap: break-word; /* Button responsive */
}

.page-promotions__cta-button:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    opacity: 0.9;
}

/* --- General Section Styling --- */
.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__section-description {
    font-size: 1.05em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-main);
}

.page-promotions__light-bg {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-promotions__dark-bg {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-promotions__dark-bg .page-promotions__section-title,
.page-promotions__dark-bg .page-promotions__section-description {
    color: #ffffff;
}

/* --- Introduction Section --- */
.page-promotions__introduction-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* --- Promotions Grid --- */
.page-promotions__promotions-grid {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-promotions__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 200px; /* Min size for card */
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.page-promotions__card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-promotions__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 20px 15px 10px 15px;
    font-weight: 600;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: var(--text-main);
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95em;
    font-weight: bold;
    margin: 0 15px 20px 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box; /* Button responsive */
    white-space: normal; /* Button responsive */
    word-wrap: break-word; /* Button responsive */
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* --- How to Claim Section --- */
.page-promotions__how-to-claim {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-promotions__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__step-item p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-promotions__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box; /* Button responsive */
    white-space: normal; /* Button responsive */
    word-wrap: break-word; /* Button responsive */
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* --- Terms Section --- */
.page-promotions__terms-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-promotions__terms-list li a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions__terms-list li a:hover {
    color: #ffffff;
}

/* --- CTA Section --- */
.page-promotions__cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-promotions__center-text {
    text-align: center;
}

.page-promotions__large-button {
    font-size: 1.3em;
    padding: 18px 45px;
    margin-top: 30px;
}

/* --- FAQ Section --- */
.page-promotions__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-promotions__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px; /* Larger radius for modern look */
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px var(--shadow-light);
  transition: all 0.3s ease;
}
details.page-promotions__faq-item:hover {
  box-shadow: 0 4px 15px var(--shadow-medium);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px; /* Increased padding */
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--primary-color);
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: var(--page-bg); /* Lighter hover background */
  color: var(--primary-color);
}
.page-promotions__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}
.page-promotions__faq-toggle {
  font-size: 28px; /* Larger toggle icon */
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px; /* Larger click area */
  text-align: center;
  line-height: 1;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px; /* Increased padding */
  background: #f9f9f9; /* Slightly different background for answer */
  border-radius: 0 0 12px 12px;
  color: var(--text-main);
  font-size: 1em;
}
details.page-promotions__faq-item[open] summary.page-promotions__faq-question {
    background-color: var(--page-bg);
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}
details.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    color: var(--primary-color);
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-promotions__hero-content h1 {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-promotions__section-title {
        font-size: clamp(1.6em, 4vw, 2.2em);
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__card img {
      height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important; /* body handles header offset */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-image {
        margin-bottom: 20px;
    }
    .page-promotions__hero-image img {
        border-radius: 8px;
    }
    .page-promotions__hero-content h1 {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 10px;
    }
    .page-promotions__hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin-top: 15px;
    }

    /* General containers and images */
    .page-promotions__container {
        padding: 30px 15px;
    }
    .page-promotions__section-title {
        font-size: clamp(1.4em, 5vw, 2em);
        margin-bottom: 15px;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Images responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__grid,
    .page-promotions__steps-list,
    .page-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__card img {
      
    }
    .page-promotions__card-title {
        font-size: 1.2em;
        margin: 15px 10px 8px 10px;
    }
    .page-promotions__card-text {
        font-size: 0.9em;
        padding: 0 10px 15px 10px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 10px 15px;
        font-size: 0.9em;
        margin: 0 0 15px 0; /* Adjust margin for full width buttons */
    }
    .page-promotions__steps-list {
        gap: 20px;
    }
    .page-promotions__step-item {
        padding: 20px;
    }
    .page-promotions__step-title {
        font-size: 1.1em;
    }
    .page-promotions__terms-list {
        padding-left: 20px;
        font-size: 0.95em;
    }
    .page-promotions__large-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    details.page-promotions__faq-item summary.page-promotions__faq-question {
      padding: 15px 20px;
      font-size: 1em;
    }
    .page-promotions__faq-qtext {
        font-size: 1em;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
      padding: 0 20px 20px;
      font-size: 0.95em;
    }
}