/* style/promotions-how-to-claim.css */
.page-promotions-how-to-claim {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
}

.page-promotions-how-to-claim__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-promotions-how-to-claim__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-how-to-claim__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-how-to-claim__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions-how-to-claim__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-how-to-claim__hero-image img:hover {
    transform: translateY(-5px);
}

.page-promotions-how-to-claim__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions-how-to-claim__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-how-to-claim__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-how-to-claim__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-how-to-claim__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-how-to-claim__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0A2342; /* Dark blue text on gold */
}

.page-promotions-how-to-claim__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-how-to-claim__btn--secondary {
    background-color: #0A2342; /* Dark blue secondary button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-promotions-how-to-claim__btn--secondary:hover {
    background-color: #1A3F6C;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-how-to-claim__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin: 5px;
}

.page-promotions-how-to-claim__btn--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin-top: 40px;
}

.page-promotions-how-to-claim__link-btn {
    color: #FFD700; /* Gold for inline links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions-how-to-claim__link-btn:hover {
    color: #e6c200;
}

.page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list li {
    background-color: #1A3F6C; /* Slightly lighter dark blue */
    padding: 20px 30px;
    border-radius: 10px;
    flex: 1 1 calc(33% - 40px);
    max-width: 300px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list li:hover {
    transform: translateY(-5px);
}

.page-promotions-how-to-claim__step-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    flex-shrink: 0;
}

.page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list li a:hover {
    color: #FFD700;
}

.page-promotions-how-to-claim__detailed-steps .page-promotions-how-to-claim__step-item {
    background-color: #0E2A4D; /* Darker blue for step items */
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-promotions-how-to-claim__step-title {
    font-size: 2em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 25px;
    text-align: center;
}

.page-promotions-how-to-claim__step-content p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions-how-to-claim__step-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-how-to-claim__step-content .page-promotions-how-to-claim__btn {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-how-to-claim__promotion-types .page-promotions-how-to-claim__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-how-to-claim__promotion-card {
    background-color: #1A3F6C; /* Lighter dark blue for cards */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-how-to-claim__promotion-card:hover {
    transform: translateY(-8px);
    background-color: #2A5A8E;
}

.page-promotions-how-to-claim__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-promotions-how-to-claim__card-description {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-promotions-how-to-claim__important-notes .page-promotions-how-to-claim__notes-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions-how-to-claim__important-notes .page-promotions-how-to-claim__notes-list li {
    background-color: #0E2A4D; /* Darker blue for list items */
    padding: 15px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-how-to-claim__important-notes .page-promotions-how-to-claim__notes-list li strong {
    color: #FFD700;
}

.page-promotions-how-to-claim__important-notes img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-how-to-claim__why-mcw77 .page-promotions-how-to-claim__benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-promotions-how-to-claim__why-mcw77 .page-promotions-how-to-claim__benefits-list li {
    background-color: #1A3F6C; /* Lighter dark blue for benefits */
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #E0E0E0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
}

.page-promotions-how-to-claim__why-mcw77 .page-promotions-how-to-claim__benefits-list li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
}

.page-promotions-how-to-claim__why-mcw77 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-how-to-claim__faq .page-promotions-how-to-claim__faq-item {
    background-color: #0E2A4D; /* Darker blue for FAQ items */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.page-promotions-how-to-claim__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold for FAQ questions */
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A3F6C;
    transition: background-color 0.3s ease;
}

.page-promotions-how-to-claim__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-how-to-claim__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-how-to-claim__faq-question:hover {
    background-color: #2A5A8E;
}

.page-promotions-how-to-claim__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-how-to-claim__faq-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding: 0 25px 20px;
}

.page-promotions-how-to-claim__faq-answer p {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-how-to-claim__hero {
        padding: 60px 20px;
    }

    .page-promotions-how-to-claim__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-how-to-claim__section-title {
        font-size: 2em;
    }

    .page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list li {
        flex: 1 1 calc(50% - 30px);
        max-width: unset;
    }

    .page-promotions-how-to-claim__detailed-steps .page-promotions-how-to-claim__step-item {
        padding: 30px;
    }

    .page-promotions-how-to-claim__step-title {
        font-size: 1.8em;
    }

    .page-promotions-how-to-claim__promotion-types .page-promotions-how-to-claim__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions-how-to-claim__why-mcw77 .page-promotions-how-to-claim__benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-how-to-claim__hero {
        flex-direction: column;
        padding: 40px 15px;
    }

    .page-promotions-how-to-claim__hero-title {
        font-size: 2em;
    }

    .page-promotions-how-to-claim__hero-description {
        font-size: 1em;
    }

    .page-promotions-how-to-claim__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page-promotions-how-to-claim__section {
        padding: 40px 15px;
    }

    .page-promotions-how-to-claim__section-title {
        font-size: 1.8em;
    }

    .page-promotions-how-to-claim__section-intro {
        font-size: 0.95em;
    }

    .page-promotions-how-to-claim__steps-overview .page-promotions-how-to-claim__step-list li {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .page-promotions-how-to-claim__step-number {
        font-size: 1.5em;
    }

    .page-promotions-how-to-claim__detailed-steps .page-promotions-how-to-claim__step-item {
        padding: 25px;
    }

    .page-promotions-how-to-claim__step-title {
        font-size: 1.5em;
    }

    .page-promotions-how-to-claim__step-content p {
        font-size: 0.95em;
    }

    .page-promotions-how-to-claim__promotion-card {
        padding: 25px;
    }

    .page-promotions-how-to-claim__card-title {
        font-size: 1.3em;
    }

    .page-promotions-how-to-claim__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-how-to-claim__faq-answer {
        padding: 0 20px 15px;
    }

    .page-promotions-how-to-claim__faq-answer.active {
        padding: 0 20px 15px;
    }
}