/* style/index-top-promotions.css */
.page-index-top-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-index-top-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-top-promotions-hero {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 50%, #E3B505 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-index-top-promotions-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E3B505; /* Wealth Gold for emphasis */
    line-height: 1.2;
}

.page-index-top-promotions-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-top-promotions-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-index-top-promotions-btn-primary {
    background-color: #E3B505; /* Wealth Gold */
    color: #0A2463; /* Tech Blue */
}

.page-index-top-promotions-btn-primary:hover {
    background-color: #f5c73c;
    transform: translateY(-2px);
}

.page-index-top-promotions-btn-secondary {
    background-color: #0A2463; /* Tech Blue */
    color: #E3B505; /* Wealth Gold */
    border: 2px solid #E3B505;
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-top-promotions-btn-secondary:hover {
    background-color: #1a3a7a;
    border-color: #f5c73c;
    transform: translateY(-2px);
}

.page-index-top-promotions-btn-link {
    background: none;
    color: #0A2463;
    padding: 5px 10px;
    border: 1px solid #0A2463;
    font-size: 0.9em;
}

.page-index-top-promotions-btn-link:hover {
    background-color: #0A2463;
    color: #ffffff;
}

.page-index-top-promotions-btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-index-top-promotions-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-index-top-promotions-section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-index-top-promotions-section-title {
    font-size: 2.5em;
    color: #0A2463; /* Tech Blue */
    text-align: center;
    margin-bottom: 20px;
}

.page-index-top-promotions-section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-index-top-promotions-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-index-top-promotions-content-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-index-top-promotions-image-wrapper {
    text-align: center;
}

.page-index-top-promotions-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-index-top-promotions-promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-top-promotions-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-top-promotions-promo-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-top-promotions-promo-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-top-promotions-promo-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-top-promotions-note {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    color: #777;
    font-size: 0.95em;
}

.page-index-top-promotions-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-index-top-promotions-step-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-top-promotions-step-icon {
    background-color: #E3B505;
    color: #0A2463;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(227, 181, 5, 0.4);
}

.page-index-top-promotions-step-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-top-promotions-step-card p {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-top-promotions-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-top-promotions-faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-index-top-promotions-faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-index-top-promotions-faq-answer {
    font-size: 1em;
    color: #444;
    padding-left: 15px;
    border-left: 3px solid #E3B505;
}

.page-index-top-promotions-text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-top-promotions-hero-title {
        font-size: 2.5em;
    }

    .page-index-top-promotions-section-title {
        font-size: 2em;
    }

    .page-index-top-promotions-grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-index-top-promotions-reverse-on-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .page-index-top-promotions-promo-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-index-top-promotions-hero {
        padding: 80px 0;
    }

    .page-index-top-promotions-hero-title {
        font-size: 2em;
    }

    .page-index-top-promotions-hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-top-promotions-section {
        padding: 40px 0;
    }

    .page-index-top-promotions-section-title {
        font-size: 1.8em;
    }

    .page-index-top-promotions-promotions-grid, .page-index-top-promotions-steps-grid {
        grid-template-columns: 1fr;
    }

    .page-index-top-promotions-promo-card, .page-index-top-promotions-step-card, .page-index-top-promotions-faq-item {
        padding: 20px;
    }

    .page-index-top-promotions-promo-title {
        font-size: 1.5em;
    }

    .page-index-top-promotions-step-title {
        font-size: 1.3em;
    }

    .page-index-top-promotions-faq-question {
        font-size: 1.1em;
    }
}

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

    .page-index-top-promotions-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-top-promotions-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}