/* style/promotions-rescue-funds.css */
.page-promotions-rescue-funds {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #0A2E50; /* Deep navy blue background */
    line-height: 1.6;
}

.page-promotions-rescue-funds__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-rescue-funds__hero-section {
    background: linear-gradient(135deg, #0A2E50 0%, #051a30 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-rescue-funds__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-rescue-funds__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #d0d0d0;
}

.page-promotions-rescue-funds__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-promotions-rescue-funds__btn--primary {
    background-color: #FFD700; /* Gold for primary buttons */
    color: #0A2E50;
}

.page-promotions-rescue-funds__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-rescue-funds__btn--secondary {
    background-color: #2a5a8a; /* Slightly lighter navy for secondary buttons */
    color: #fff;
    border: 1px solid #FFD700;
}

.page-promotions-rescue-funds__btn--secondary:hover {
    background-color: #3d7fb8;
    transform: translateY(-3px);
}

.page-promotions-rescue-funds__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-rescue-funds__section:last-of-type {
    border-bottom: none;
}

.page-promotions-rescue-funds__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-rescue-funds__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #c0c0c0;
}

.page-promotions-rescue-funds__sub-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-rescue-funds__flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-promotions-rescue-funds__flex-container--reverse {
    flex-direction: row-reverse;
}

.page-promotions-rescue-funds__content-block,
.page-promotions-rescue-funds__image-block {
    flex: 1;
}

.page-promotions-rescue-funds__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-rescue-funds__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions-rescue-funds__list li {
    background-color: #1a3c5d; /* Slightly lighter navy for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
}

.page-promotions-rescue-funds__list li strong {
    margin-right: 10px;
    color: #FFD700;
}

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

.page-promotions-rescue-funds__grid-item {
    background-color: #1a3c5d; /* Lighter navy for grid items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-rescue-funds__grid-item:hover {
    transform: translateY(-5px);
}

.page-promotions-rescue-funds__grid-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons stand out */
}

.page-promotions-rescue-funds__item-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for item titles */
    margin-bottom: 15px;
}

.page-promotions-rescue-funds__cta-block {
    background-color: #051a30; /* Darker navy for CTA block */
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
}

.page-promotions-rescue-funds__cta-text {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-rescue-funds__numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions-rescue-funds__numbered-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
}

.page-promotions-rescue-funds__numbered-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFD700; /* Gold for step numbers */
    color: #0A2E50;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-promotions-rescue-funds__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-promotions-rescue-funds__term-item {
    background-color: #1a3c5d;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-rescue-funds__term-item .page-promotions-rescue-funds__item-title {
    font-size: 1.5em;
    margin-top: 0;
    display: flex;
    align-items: center;
    color: #FFD700;
}

.page-promotions-rescue-funds__icon {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-promotions-rescue-funds__read-more {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-promotions-rescue-funds__read-more a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-rescue-funds__faq-list {
    margin-top: 40px;
}

.page-promotions-rescue-funds__faq-item {
    background-color: #1a3c5d;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-rescue-funds__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Gold for FAQ questions */
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.page-promotions-rescue-funds__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-rescue-funds__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: #d0d0d0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-rescue-funds__faq-answer.active {
    max-height: 300px; /* Adjust as needed for content */
    padding: 0 25px 20px 25px;
}

.page-promotions-rescue-funds__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-rescue-funds__section--conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions-rescue-funds__section--conclusion .page-promotions-rescue-funds__section-title {
    margin-bottom: 30px;
}

.page-promotions-rescue-funds__section--conclusion p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #d0d0d0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-rescue-funds__flex-container {
        flex-direction: column;
    }

    .page-promotions-rescue-funds__flex-container--reverse {
        flex-direction: column;
    }

    .page-promotions-rescue-funds__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-rescue-funds__section-title {
        font-size: 2em;
    }

    .page-promotions-rescue-funds__sub-title {
        font-size: 1.4em;
    }

    .page-promotions-rescue-funds__grid,
    .page-promotions-rescue-funds__terms-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-rescue-funds__content-block,
    .page-promotions-rescue-funds__image-block {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions-rescue-funds__hero-section {
        padding: 60px 0;
    }

    .page-promotions-rescue-funds__hero-title {
        font-size: 2em;
    }

    .page-promotions-rescue-funds__hero-description {
        font-size: 1em;
    }

    .page-promotions-rescue-funds__section {
        padding: 40px 0;
    }

    .page-promotions-rescue-funds__section-title {
        font-size: 1.8em;
    }

    .page-promotions-rescue-funds__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-rescue-funds__cta-block {
        padding: 30px;
    }

    .page-promotions-rescue-funds__cta-text {
        font-size: 1.2em;
    }

    .page-promotions-rescue-funds__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-rescue-funds__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-rescue-funds__section-title {
        font-size: 1.6em;
    }

    .page-promotions-rescue-funds__sub-title {
        font-size: 1.2em;
    }

    .page-promotions-rescue-funds__grid-item,
    .page-promotions-rescue-funds__term-item {
        padding: 20px;
    }

    .page-promotions-rescue-funds__item-title {
        font-size: 1.3em;
    }

    .page-promotions-rescue-funds__numbered-list li {
        padding-left: 40px;
    }

    .page-promotions-rescue-funds__numbered-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}