.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-index-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-latest-promotions__hero {
    background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-index-latest-promotions__pulse 4s infinite ease-in-out;
}

.page-index-latest-promotions__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-index-latest-promotions__pulse 5s infinite reverse ease-in-out;
}

@keyframes page-index-latest-promotions__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-index-latest-promotions__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-latest-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
    border: none;
}

.page-index-latest-promotions__btn--primary {
    background-color: #FFD700;
    color: #1A2E47;
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__section--why-choose {
    background-color: #fcfcfc;
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #1A2E47;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-index-latest-promotions__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

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

.page-index-latest-promotions__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-latest-promotions__feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.page-index-latest-promotions__feature-title {
    font-size: 1.5em;
    color: #1A2E47;
    margin-bottom: 15px;
}

.page-index-latest-promotions__feature-description {
    color: #666;
    font-size: 0.95em;
}

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

.page-index-latest-promotions__offer-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-latest-promotions__offer-card h3 {
    font-size: 1.4em;
    color: #1A2E47;
    padding: 20px 20px 10px;
}

.page-index-latest-promotions__offer-card p {
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-index-latest-promotions__btn--small {
    font-size: 0.9em;
    padding: 10px 20px;
    margin: 0 20px 20px;
    text-align: center;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.page-index-latest-promotions__guide-list {
    list-style: none;
    padding: 0;
}

.page-index-latest-promotions__guide-list li {
    background-color: #f0f4f7;
    border-left: 5px solid #FFD700;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__guide-step-title {
    font-size: 1.6em;
    color: #1A2E47;
    margin-bottom: 10px;
}

.page-index-latest-promotions__guide-list p {
    color: #555;
    margin-bottom: 15px;
}

.page-index-latest-promotions__inline-link {
    color: #1A2E47;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-latest-promotions__inline-link:hover {
    color: #FFD700;
}

.page-index-latest-promotions__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-index-latest-promotions__tips-list li {
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1A2E47;
}

.page-index-latest-promotions__tips-list li p {
    margin: 0;
    color: #555;
}

.page-index-latest-promotions__tips-list li strong {
    color: #1A2E47;
}

.page-index-latest-promotions__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-latest-promotions__accordion-item {
    background-color: #fdfdfd;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-index-latest-promotions__accordion-header {
    background-color: #1A2E47;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-index-latest-promotions__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-latest-promotions__accordion-header:hover {
    background-color: #2a415a;
}

.page-index-latest-promotions__accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-latest-promotions__accordion-content.open {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-index-latest-promotions__accordion-content p {
    color: #555;
    margin: 0;
}

.page-index-latest-promotions__cta-bottom {
    background-color: #1A2E47;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

.page-index-latest-promotions__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-index-latest-promotions__cta-buttons .page-index-latest-promotions__btn {
    margin: 0 15px;
}

.page-index-latest-promotions__sticky-cta {
    position: sticky;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 1000;
    background-color: #FFD700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 25px;
    animation: page-index-latest-promotions__bounce 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.page-index-latest-promotions__sticky-cta:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__sticky-btn {
    color: #1A2E47;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-index-latest-promotions__sticky-icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes page-index-latest-promotions__bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions__title {
        font-size: 2.5em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-latest-promotions__features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions__hero {
        padding: 60px 0;
    }
    .page-index-latest-promotions__title {
        font-size: 2em;
    }
    .page-index-latest-promotions__subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 5px;
    }
    .page-index-latest-promotions__section {
        padding: 40px 0;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__offer-card h3 {
        font-size: 1.2em;
    }
    .page-index-latest-promotions__offer-card p {
        font-size: 0.9em;
    }
    .page-index-latest-promotions__guide-step-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions__cta-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__cta-description {
        font-size: 1em;
    }
    .page-index-latest-promotions__sticky-cta {
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
        bottom: 10px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__subtitle {
        font-size: 0.9em;
    }
    .page-index-latest-promotions__btn {
        display: block;
        width: calc(100% - 40px);
        margin: 10px auto;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__cta-buttons .page-index-latest-promotions__btn {
        margin: 10px auto;
    }
    .page-index-latest-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-index-latest-promotions__accordion-header::after {
        right: 20px;
    }
    .page-index-latest-promotions__accordion-content {
        padding: 15px 20px;
    }
}