/* style/promotions-deposit-rebate-introduction.css */

/* Biến CSS */
:root {
    --page-promotions-deposit-rebate-introduction-primary-color: #007bff;
    --page-promotions-deposit-rebate-introduction-secondary-color: #ffc107;
    --page-promotions-deposit-rebate-introduction-text-color-dark: #212529;
    --page-promotions-deposit-rebate-introduction-text-color-light: #f8f9fa;
    --page-promotions-deposit-rebate-introduction-bg-light: #f8f9fa;
    --page-promotions-deposit-rebate-introduction-bg-dark: #343a40;
    --page-promotions-deposit-rebate-introduction-border-color: #dee2e6;
}

.page-promotions-deposit-rebate-introduction {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-deposit-rebate-introduction-text-color-dark);
    background-color: var(--page-promotions-deposit-rebate-introduction-bg-light);
}

.page-promotions-deposit-rebate-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-deposit-rebate-introduction__hero-section {
    background: linear-gradient(135deg, var(--page-promotions-deposit-rebate-introduction-primary-color) 0%, #0056b3 100%);
    color: var(--page-promotions-deposit-rebate-introduction-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-rebate-introduction__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-promotions-deposit-rebate-introduction-text-color-light);
}

.page-promotions-deposit-rebate-introduction__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-promotions-deposit-rebate-introduction__cta-button {
    display: inline-block;
    background-color: var(--page-promotions-deposit-rebate-introduction-secondary-color);
    color: var(--page-promotions-deposit-rebate-introduction-text-color-dark);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-rebate-introduction__cta-button:hover {
    background-color: #e0a800; /* Darker shade of secondary color */
    transform: translateY(-3px);
}

.page-promotions-deposit-rebate-introduction__content-section {
    padding: 60px 0;
    background-color: var(--page-promotions-deposit-rebate-introduction-bg-light);
}

.page-promotions-deposit-rebate-introduction__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-deposit-rebate-introduction-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-deposit-rebate-introduction__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-promotions-deposit-rebate-introduction-secondary-color);
    border-radius: 2px;
}

.page-promotions-deposit-rebate-introduction__subsection-title {
    font-size: 1.8em;
    color: var(--page-promotions-deposit-rebate-introduction-primary-color);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-promotions-deposit-rebate-introduction__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.page-promotions-deposit-rebate-introduction__list,
.page-promotions-deposit-rebate-introduction__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-promotions-deposit-rebate-introduction__ordered-list {
    list-style-type: decimal;
}

.page-promotions-deposit-rebate-introduction__list li,
.page-promotions-deposit-rebate-introduction__ordered-list li {
    margin-bottom: 10px;
    color: var(--page-promotions-deposit-rebate-introduction-text-color-dark);
}

.page-promotions-deposit-rebate-introduction__text-link {
    color: var(--page-promotions-deposit-rebate-introduction-primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-promotions-deposit-rebate-introduction__text-link:hover {
    color: #0056b3; /* Darker primary */
    text-decoration: underline;
}

.page-promotions-deposit-rebate-introduction__secondary-cta-button {
    display: inline-block;
    background-color: var(--page-promotions-deposit-rebate-introduction-primary-color);
    color: var(--page-promotions-deposit-rebate-introduction-text-color-light);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.page-promotions-deposit-rebate-introduction__secondary-cta-button:hover {
    background-color: #0056b3;
}

.page-promotions-deposit-rebate-introduction__image-container {
    text-align: center;
    margin: 30px 0;
}

.page-promotions-deposit-rebate-introduction__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-rebate-introduction__faq-section {
    margin-top: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.page-promotions-deposit-rebate-introduction__faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--page-promotions-deposit-rebate-introduction-border-color);
}

.page-promotions-deposit-rebate-introduction__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-promotions-deposit-rebate-introduction__faq-question {
    font-size: 1.3em;
    color: var(--page-promotions-deposit-rebate-introduction-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-deposit-rebate-introduction__faq-answer {
    font-size: 1.05em;
    color: var(--page-promotions-deposit-rebate-introduction-text-color-dark);
    line-height: 1.7;
}

.page-promotions-deposit-rebate-introduction__final-cta {
    margin-top: 50px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-rebate-introduction__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-rebate-introduction__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-deposit-rebate-introduction__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-rebate-introduction__subsection-title {
        font-size: 1.6em;
    }
    .page-promotions-deposit-rebate-introduction__paragraph,
    .page-promotions-deposit-rebate-introduction__list li,
    .page-promotions-deposit-rebate-introduction__ordered-list li,
    .page-promotions-deposit-rebate-introduction__faq-answer {
        font-size: 1em;
    }
    .page-promotions-deposit-rebate-introduction__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-promotions-deposit-rebate-introduction__final-cta {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-rebate-introduction__hero-section {
        padding: 80px 0;
    }
    .page-promotions-deposit-rebate-introduction__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-rebate-introduction__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-deposit-rebate-introduction__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-rebate-introduction__subsection-title {
        font-size: 1.4em;
    }
    .page-promotions-deposit-rebate-introduction__content-section {
        padding: 40px 0;
    }
    .page-promotions-deposit-rebate-introduction__faq-section {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-promotions-deposit-rebate-introduction__hero-section {
        padding: 60px 0;
    }
    .page-promotions-deposit-rebate-introduction__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-rebate-introduction__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-deposit-rebate-introduction__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-rebate-introduction__subsection-title {
        font-size: 1.2em;
    }
    .page-promotions-deposit-rebate-introduction__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-promotions-deposit-rebate-introduction__list,
    .page-promotions-deposit-rebate-introduction__ordered-list {
        margin-left: 15px;
    }
    .page-promotions-deposit-rebate-introduction__final-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
}