.page-loyalty-program {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles main offset */
}

.page-loyalty-program__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.page-loyalty-program__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-loyalty-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    min-height: 200px; /* Enforce min-size */
}

.page-loyalty-program__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above image if any overlap happens */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-loyalty-program__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-loyalty-program__description {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 30px;
    color: #E5E5E5;
}

.page-loyalty-program__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-loyalty-program__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-loyalty-program__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 0.03em;
}

.page-loyalty-program__section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E5E5E5;
}

.page-loyalty-program__how-it-works-section,
.page-loyalty-program__tiers-benefits-section,
.page-loyalty-program__exclusive-offers-section,
.page-loyalty-program__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-loyalty-program__steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-loyalty-program__step-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-loyalty-program__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B;
}

.page-loyalty-program__step-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
}

.page-loyalty-program__step-title {
    font-size: 1.8rem;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-loyalty-program__step-description {
    font-size: 1rem;
    color: #E5E5E5;
}

.page-loyalty-program__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-loyalty-program__tier-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-loyalty-program__tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B;
}

.page-loyalty-program__tier-name {
    font-size: 2rem;
    color: #F2C14E;
    margin-bottom: 15px;
    text-align: center;
}

.page-loyalty-program__tier-description {
    font-size: 1rem;
    color: #E5E5E5;
    margin-bottom: 20px;
}

.page-loyalty-program__tier-features {
    list-style: none;
    padding: 0;
}

.page-loyalty-program__tier-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #FFF6D6;
}

.page-loyalty-program__tier-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD36B;
}

.page-loyalty-program__cta-group {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-loyalty-program__secondary-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #F2C14E;
    color: #F2C14E;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-loyalty-program__secondary-button:hover {
    background-color: #F2C14E;
    color: #111111;
}

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

.page-loyalty-program__offer-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-loyalty-program__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B;
}

.page-loyory-program__offer-image {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
}

.page-loyalty-program__offer-title {
    font-size: 1.6rem;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-loyalty-program__offer-description {
    font-size: 0.95rem;
    color: #E5E5E5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-loyalty-program__offer-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-loyalty-program__offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 211, 107, 0.6);
}

.page-loyalty-program__faq-item {
    background-color: #111111;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-loyalty-program__faq-question {
    font-size: 1.3rem;
    color: #FFD36B;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-loyalty-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-loyalty-program__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-loyalty-program__faq-answer {
    font-size: 1rem;
    color: #E5E5E5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-loyalty-program__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-loyalty-program__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .page-loyalty-program__description,
    .page-loyalty-program__section-intro {
        font-size: 1rem;
    }

    .page-loyalty-program__steps-container,
    .page-loyalty-program__tiers-grid,
    .page-loyalty-program__offers-grid {
        grid-template-columns: 1fr;
    }

    .page-loyalty-program__step-card,
    .page-loyalty-program__tier-card,
    .page-loyalty-program__offer-card {
        max-width: 100%;
    }

    .page-loyalty-program__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-loyalty-program__cta-button,
    .page-loyalty-program__secondary-button {
        width: 100%;
        box-sizing: border-box;
    }

    .page-loyalty-program__hero-image,
    .page-loyalty-program__step-image,
    .page-loyalty-program__offer-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min-size */
        min-height: 200px; /* Enforce min-size */
    }

    .page-loyalty-program img {
        max-width: 100%;
        height: auto;
    }
}