.page-promotions {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light background */
    line-height: 1.6;
    background-color: #FFFFFF; /* Default body background */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 50px;
    text-align: center;
    background-color: #f0f8ff; /* Light blue tint for hero background */
}

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

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default to cover for desktop */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem); /* Use clamp for subtitle */
    color: #555555;
    margin-bottom: 30px;
}

/* Primary Button */
.page-promotions__btn-primary {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure button adapts to width */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
    background-color: #1e87c0;
    transform: translateY(-2px);
}

.page-promotions__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Secondary Button */
.page-promotions__btn-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #26A9E0;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
    max-width: 100%; /* Ensure button adapts to width */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
    background-color: #e0f2f7;
    transform: translateY(-2px);
    border-color: #1e87c0;
}

/* Section Titles and Descriptions */
.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 50px;
}

.page-promotions__section-title--white {
    color: #FFFFFF;
}

.page-promotions__section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.page-promotions__section-description--white {
    color: #f0f0f0;
}

/* Categories Section */
.page-promotions__categories-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    padding-top: 30px;
}

.page-promotions__promo-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-promotions__promo-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions__promo-card-description {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__promo-card-button {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__promo-card-button:hover {
    background-color: #1e87c0;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Brand primary color for background */
    color: #FFFFFF;
}

.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 30px;
    text-align: center;
}

.page-promotions__step-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.page-promotions__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-promotions__step-description {
    font-size: 0.95rem;
    color: #f0f0f0;
}

.page-promotions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}