/* style/promotions-promotions-frequently-asked-questions.css */

/* Base styles for the page */
.page-promotions-promotions-frequently-asked-questions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for text on dark background */
    background-color: #1A2A3A; /* Main dark background */
    line-height: 1.6;
}

.page-promotions-promotions-frequently-asked-questions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-promotions-promotions-frequently-asked-questions__hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
    padding: 20px;
}

.page-promotions-promotions-frequently-asked-questions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.page-promotions-promotions-frequently-asked-questions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.7), rgba(255, 215, 0, 0.2));
    z-index: 2;
}

.page-promotions-promotions-frequently-asked-questions__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.page-promotions-promotions-frequently-asked-questions__hero-title {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #FFD700; /* Auxiliary color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-promotions-frequently-asked-questions__hero-subtitle {
    font-size: 1.5em;
    color: #FFFFFF;
}

/* FAQ Section */
.page-promotions-promotions-frequently-asked-questions__faq-section {
    padding: 60px 0;
    background-color: #1A2A3A;
}

.page-promotions-promotions-frequently-asked-questions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-promotions-frequently-asked-questions__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-promotions-frequently-asked-questions__faq-intro p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions-promotions-frequently-asked-questions__faq-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-promotions-frequently-asked-questions__faq-list {
    margin-top: 50px;
}

.page-promotions-promotions-frequently-asked-questions__faq-item {
    background-color: #2A3B4C; /* Slightly lighter dark for FAQ items */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-promotions-frequently-asked-questions__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-promotions-frequently-asked-questions__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Auxiliary color for questions */
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-promotions-frequently-asked-questions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-promotions-promotions-frequently-asked-questions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-promotions-frequently-asked-questions__faq-answer {
    font-size: 1.1em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-promotions-frequently-asked-questions__faq-answer.active {
    max-height: 500px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-promotions-promotions-frequently-asked-questions__faq-answer p {
    margin-bottom: 10px;
}

.page-promotions-promotions-frequently-asked-questions__faq-answer ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-promotions-promotions-frequently-asked-questions__faq-answer li {
    margin-bottom: 5px;
}

.page-promotions-promotions-frequently-asked-questions__faq-answer strong {
    color: #FFD700;
}

/* Call to Action Section */
.page-promotions-promotions-frequently-asked-questions__cta-section {
    background-color: #2A3B4C;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-promotions-frequently-asked-questions__cta-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-promotions-frequently-asked-questions__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions-promotions-frequently-asked-questions__cta-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-promotions-frequently-asked-questions__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A3A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-promotions-frequently-asked-questions__cta-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-promotions-frequently-asked-questions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-promotions-frequently-asked-questions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-promotions-frequently-asked-questions__section-title {
        font-size: 2em;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-question {
        font-size: 1.3em;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-answer {
        font-size: 1em;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-promotions-frequently-asked-questions__hero {
        height: 300px;
    }
    .page-promotions-promotions-frequently-asked-questions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-promotions-frequently-asked-questions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-section {
        padding: 40px 0;
    }
    .page-promotions-promotions-frequently-asked-questions__section-title {
        font-size: 1.8em;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-question {
        font-size: 1.2em;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-item {
        padding: 20px;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-section {
        padding: 40px 20px;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-title {
        font-size: 1.6em;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-promotions-frequently-asked-questions__hero {
        height: 250px;
    }
    .page-promotions-promotions-frequently-asked-questions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-promotions-frequently-asked-questions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-promotions-frequently-asked-questions__container {
        padding: 15px;
    }
    .page-promotions-promotions-frequently-asked-questions__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-promotions-frequently-asked-questions__faq-answer.active {
        max-height: 400px; /* Smaller max-height for mobile */
    }
    .page-promotions-promotions-frequently-asked-questions__cta-title {
        font-size: 1.4em;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-description {
        font-size: 0.95em;
    }
    .page-promotions-promotions-frequently-asked-questions__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}