/* style/index-s666-exclusive-offers.css */
.page-index-s666-exclusive-offers {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-s666-exclusive-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-s666-exclusive-offers__hero-section {
    background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Adjusted gradient for better contrast with gold */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-index-s666-exclusive-offers__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-index-s666-exclusive-offers__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-s666-exclusive-offers__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-s666-exclusive-offers__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-s666-exclusive-offers__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-index-s666-exclusive-offers__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0047AB; /* Dark Blue */
    border: 2px solid #FFD700;
}

.page-index-s666-exclusive-offers__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-s666-exclusive-offers__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-index-s666-exclusive-offers__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-index-s666-exclusive-offers__hero-image-wrapper {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-s666-exclusive-offers__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-index-s666-exclusive-offers__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-s666-exclusive-offers__section:nth-of-type(even) {
    background-color: #f0f5fa; /* Light blueish background for alternating sections */
}

.page-index-s666-exclusive-offers__section-title {
    font-size: 2.5em;
    color: #0047AB; /* Dark Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-s666-exclusive-offers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-index-s666-exclusive-offers__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-index-s666-exclusive-offers__text-block a {
    color: #0047AB;
    text-decoration: underline;
}

.page-index-s666-exclusive-offers__text-block a:hover {
    color: #FFD700;
}

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

.page-index-s666-exclusive-offers__offer-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-s666-exclusive-offers__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-s666-exclusive-offers__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-index-s666-exclusive-offers__offer-title {
    font-size: 1.6em;
    color: #0047AB; /* Dark Blue */
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-index-s666-exclusive-offers__offer-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: justify;
}

.page-index-s666-exclusive-offers__offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    padding: 0 20px;
}

.page-index-s666-exclusive-offers__offer-features li {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.page-index-s666-exclusive-offers__offer-features li i {
    color: #FFD700; /* Gold */
    margin-right: 10px;
    font-size: 1.2em;
}

.page-index-s666-exclusive-offers__btn--claim {
    background-color: #0047AB; /* Dark Blue */
    color: #ffffff;
    border: 2px solid #0047AB;
    padding: 12px 25px;
    font-size: 1em;
}

.page-index-s666-exclusive-offers__btn--claim:hover {
    background-color: #003380;
    border-color: #003380;
}

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

.page-index-s666-exclusive-offers__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
}

.page-index-s666-exclusive-offers__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700; /* Gold */
    background-color: #0047AB;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px auto;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 5px #0047AB;
}

.page-index-s666-exclusive-offers__step-card:first-child .page-index-s666-exclusive-offers__step-icon {
    margin-top: 0;
}

.page-index-s666-exclusive-offers__step-title {
    font-size: 1.4em;
    color: #0047AB; /* Dark Blue */
    margin-bottom: 10px;
}

.page-index-s666-exclusive-offers__step-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.page-index-s666-exclusive-offers__step-image {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-top: 15px;
    border-radius: 5px;
}

.page-index-s666-exclusive-offers__tip-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.page-index-s666-exclusive-offers__tip-list li {
    background-color: #fff;
    border-left: 5px solid #FFD700; /* Gold */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: #333;
}

.page-index-s666-exclusive-offers__tip-list li i {
    color: #0047AB; /* Dark Blue */
    margin-right: 15px;
    font-size: 1.5em;
    line-height: 1;
}

.page-index-s666-exclusive-offers__feature-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-s666-exclusive-offers__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-index-s666-exclusive-offers__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-index-s666-exclusive-offers__faq-question {
    font-size: 1.2em;
    color: #0047AB; /* Dark Blue */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-s666-exclusive-offers__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    transition: transform 0.3s ease;
}

.page-index-s666-exclusive-offers__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-s666-exclusive-offers__faq-answer {
    font-size: 1em;
    color: #444;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-index-s666-exclusive-offers__faq-answer.active {
    display: block;
}

.page-index-s666-exclusive-offers__faq-answer a {
    color: #0047AB;
    text-decoration: underline;
}

.page-index-s666-exclusive-offers__faq-answer a:hover {
    color: #FFD700;
}

.highlight-text {
    color: #0047AB;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-s666-exclusive-offers__hero-title {
        font-size: 2.8em;
    }
    .page-index-s666-exclusive-offers__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-s666-exclusive-offers__section-title {
        font-size: 2em;
    }
    .page-index-s666-exclusive-offers__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-s666-exclusive-offers__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-s666-exclusive-offers__hero-section {
        padding: 60px 15px;
    }
    .page-index-s666-exclusive-offers__hero-title {
        font-size: 2.2em;
    }
    .page-index-s666-exclusive-offers__hero-subtitle {
        font-size: 1em;
    }
    .page-index-s666-exclusive-offers__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-s666-exclusive-offers__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-index-s666-exclusive-offers__section {
        padding: 40px 0;
    }
    .page-index-s666-exclusive-offers__section-title {
        font-size: 1.8em;
    }
    .page-index-s666-exclusive-offers__text-block {
        font-size: 1em;
    }
    .page-index-s666-exclusive-offers__offer-card {
        padding-bottom: 20px;
    }
    .page-index-s666-exclusive-offers__offer-title {
        font-size: 1.4em;
    }
    .page-index-s666-exclusive-offers__offer-description {
        font-size: 0.9em;
    }
    .page-index-s666-exclusive-offers__step-icon {
        width: 50px;
        height: 50px;
        font-size: 2em;
        margin: -50px auto 15px auto;
    }
    .page-index-s666-exclusive-offers__step-title {
        font-size: 1.2em;
    }
    .page-index-s666-exclusive-offers__tip-list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }
    .page-index-s666-exclusive-offers__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-s666-exclusive-offers__faq-question {
        font-size: 1.1em;
    }
    .page-index-s666-exclusive-offers__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-index-s666-exclusive-offers__hero-title {
        font-size: 1.8em;
    }
    .page-index-s666-exclusive-offers__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-s666-exclusive-offers__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-s666-exclusive-offers__section-title {
        font-size: 1.5em;
    }
    .page-index-s666-exclusive-offers__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-index-s666-exclusive-offers__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-s666-exclusive-offers__step-icon {
        margin: 0 auto 15px auto;
    }
    .page-index-s666-exclusive-offers__tip-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-index-s666-exclusive-offers__tip-list li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-index-s666-exclusive-offers__btn--large {
        width: 100%;
        max-width: none;
    }
}