.page-promotions {
    background-color: var(--bg-color, #0A0A0A);
    color: var(--text-main-color, #FFF6D6);
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Minimal padding-top for first section */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

.page-promotions__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main-color, #FFF6D6);
    margin-bottom: 15px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main-color, #FFF6D6);
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-color, linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%));
    color: #111111; /* Dark text for light button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
    text-align: center;
    font-size: 1.1rem;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__section-title {
    font-size: 2.5rem;
    color: var(--primary-color, #F2C14E);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main-color, #FFF6D6);
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg-color, #111111);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color, #3A2A12);
    display: flex;
    flex-direction: column;
}

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

.page-promotions__promo-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px; /* Ensure image is not too small */
}

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

.page-promotions__promo-card-title {
    font-size: 1.5rem;
    color: var(--primary-color, #F2C14E);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__promo-card-text {
    font-size: 1rem;
    color: var(--text-main-color, #FFF6D6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promotions__promo-card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-color, linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%));
    color: #111111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
    align-self: flex-start;
    font-size: 1rem;
}

.page-promotions__promo-card-button:hover {
    opacity: 0.9;
}

.page-promotions__why-me777 .page-promotions__section-intro {
    margin-bottom: 30px;
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-promotions__benefit-item {
    background-color: var(--card-bg-color, #111111);
    border: 1px solid var(--border-color, #3A2A12);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-main-color, #FFF6D6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__benefit-item strong {
    color: var(--primary-color, #F2C14E);
    margin-right: 10px;
}

.page-promotions__benefit-item::before {
    content: '⭐'; /* Unicode star emoji */
    margin-right: 15px;
    font-size: 1.5em;
    line-height: 1;
    color: var(--glow-color, #FFD36B);
}

.page-promotions__faq .page-promotions__section-intro {
    margin-bottom: 30px;
}

.page-promotions__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__accordion-item {
    background-color: var(--card-bg-color, #111111);
    border: 1px solid var(--border-color, #3A2A12);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    width: 100%;
    background-color: var(--card-bg-color, #111111);
    color: var(--primary-color, #F2C14E);
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #1a1a1a;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #0A0A0A; /* Slightly darker for content */
}

.page-promotions__accordion-content.open {
    max-height: 200px; /* Arbitrary max-height, adjust if content is longer */
    padding: 15px 25px 25px;
}

.page-promotions__accordion-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main-color, #FFF6D6);
}

.page-promotions__cta-final {
    text-align: center;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__section-title {
        font-size: 2rem;
    }

    .page-promotions__section-intro {
        font-size: 1rem;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-card-title {
        font-size: 1.3rem;
    }

    .page-promotions__promo-card-text {
        font-size: 0.95rem;
    }

    .page-promotions__benefit-item {
        font-size: 1rem;
        padding: 15px;
    }

    .page-promotions__accordion-header {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-promotions__accordion-content.open {
        padding: 10px 20px 20px;
    }

    .page-promotions__accordion-content p {
        font-size: 0.95rem;
    }

    /* Ensure content area images are responsive */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__hero-image {
        max-height: 300px; /* Adjust hero image height for smaller screens */
    }
}