/* style/resources-go8-latest-offers.css */

:root {
    --go8-primary-color: #0A2463;
    --go8-secondary-color: #E3B505;
    --go8-text-light: #ffffff;
    --go8-text-dark: #333333;
    --go8-background-light: #f4f7f6;
    --go8-background-dark: #071a47;
    --go8-accent-color: #f5db9c; /* Complementary to primary for highlights */
    --go8-border-color: #cccccc;
}

.page-resources-go8-latest-offers {
    font-family: 'Arial', sans-serif;
    color: var(--go8-text-dark);
    line-height: 1.6;
}

.page-resources-go8-latest-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-go8-latest-offers__section-title {
    font-size: 2.5em;
    color: var(--go8-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-go8-latest-offers__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--go8-text-dark);
}

.page-resources-go8-latest-offers__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    font-size: 1em;
}

.page-resources-go8-latest-offers__btn--primary {
    background-color: var(--go8-secondary-color);
    color: var(--go8-primary-color);
    border: 2px solid var(--go8-secondary-color);
}

.page-resources-go8-latest-offers__btn--primary:hover {
    background-color: #f5db9c; /* Lighter gold */
    border-color: #f5db9c;
    color: var(--go8-primary-color);
    transform: translateY(-2px);
}

.page-resources-go8-latest-offers__btn--secondary {
    background-color: transparent;
    color: var(--go8-secondary-color);
    border: 2px solid var(--go8-secondary-color);
}

.page-resources-go8-latest-offers__btn--secondary:hover {
    background-color: var(--go8-secondary-color);
    color: var(--go8-primary-color);
    transform: translateY(-2px);
}

.page-resources-go8-latest-offers__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.page-resources-go8-latest-offers__hero {
    background: linear-gradient(135deg, var(--go8-primary-color) 0%, var(--go8-background-dark) 100%);
    color: var(--go8-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-resources-go8-latest-offers__hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-go8-latest-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--go8-secondary-color);
    line-height: 1.2;
    font-weight: bold;
}

.page-resources-go8-latest-offers__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-resources-go8-latest-offers__hero-image-wrapper {
    display: none; /* Hidden by default, shown on larger screens */
}

/* Offers Overview Section */
.page-resources-go8-latest-offers__offers-overview {
    padding: 60px 0;
    background-color: var(--go8-background-light);
}

.page-resources-go8-latest-offers__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-go8-latest-offers__offer-card {
    background-color: var(--go8-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-go8-latest-offers__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-go8-latest-offers__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-go8-latest-offers__card-title {
    font-size: 1.5em;
    color: var(--go8-primary-color);
    margin-bottom: 15px;
}

.page-resources-go8-latest-offers__card-text {
    font-size: 1em;
    color: var(--go8-text-dark);
    margin-bottom: 25px;
}

/* How-to-Claim Section */
.page-resources-go8-latest-offers__how-to-claim {
    padding: 60px 0;
    background-color: var(--go8-background-dark);
    color: var(--go8-text-light);
}

.page-resources-go8-latest-offers__how-to-claim .page-resources-go8-latest-offers__section-title {
    color: var(--go8-secondary-color);
}

.page-resources-go8-latest-offers__how-to-claim .page-resources-go8-latest-offers__section-description {
    color: #e0e0e0;
}

.page-resources-go8-latest-offers__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-resources-go8-latest-offers__step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--go8-secondary-color);
    color: var(--go8-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    flex-shrink: 0;
}

.page-resources-go8-latest-offers__step-content h3 {
    font-size: 1.6em;
    color: var(--go8-secondary-color);
    margin-bottom: 10px;
}

.page-resources-go8-latest-offers__step-content p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-resources-go8-latest-offers__steps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
}

.page-resources-go8-latest-offers__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Terms Section */
.page-resources-go8-latest-offers__terms {
    padding: 60px 0;
    background-color: var(--go8-background-light);
}

.page-resources-go8-latest-offers__list {
    list-style: disc;
    margin-left: 20px;
    font-size: 1.1em;
    color: var(--go8-text-dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-go8-latest-offers__list li {
    margin-bottom: 15px;
}

.page-resources-go8-latest-offers__list li strong {
    color: var(--go8-primary-color);
}

/* Why Choose Section */
.page-resources-go8-latest-offers__why-choose {
    padding: 60px 0;
    background-color: var(--go8-primary-color);
    color: var(--go8-text-light);
}

.page-resources-go8-latest-offers__why-choose .page-resources-go8-latest-offers__section-title {
    color: var(--go8-secondary-color);
}

.page-resources-go8-latest-offers__why-choose .page-resources-go8-latest-offers__section-description {
    color: #e0e0e0;
}

.page-resources-go8-latest-offers__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-go8-latest-offers__feature-item {
    text-align: center;
    background-color: var(--go8-background-dark);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-go8-latest-offers__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(227, 181, 5, 0.7)); /* Glowing effect for gold */
}

.page-resources-go8-latest-offers__feature-item h3 {
    font-size: 1.4em;
    color: var(--go8-secondary-color);
    margin-bottom: 10px;
}

.page-resources-go8-latest-offers__feature-item p {
    color: #cccccc;
    font-size: 0.95em;
}

.page-resources-go8-latest-offers__why-choose-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-resources-go8-latest-offers__faq {
    padding: 60px 0;
    background-color: var(--go8-background-light);
}

.page-resources-go8-latest-offers__faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-go8-latest-offers__faq-item {
    background-color: var(--go8-text-light);
    border: 1px solid var(--go8-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-go8-latest-offers__faq-question {
    font-size: 1.2em;
    color: var(--go8-primary-color);
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--go8-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-go8-latest-offers__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--go8-secondary-color);
    transition: transform 0.3s ease;
}

.page-resources-go8-latest-offers__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-go8-latest-offers__faq-answer {
    padding: 0 25px 18px;
    margin: 0;
    font-size: 1em;
    color: var(--go8-text-dark);
    display: none; /* Hidden by default */
}

.page-resources-go8-latest-offers__faq-question.active + .page-resources-go8-latest-offers__faq-answer {
    display: block;
}

/* Final CTA Section */
.page-resources-go8-latest-offers__cta-final {
    padding: 60px 0;
    background: linear-gradient(45deg, var(--go8-secondary-color) 0%, #f5db9c 100%);
    color: var(--go8-primary-color);
    text-align: center;
}

.page-resources-go8-latest-offers__cta-final .page-resources-go8-latest-offers__section-title {
    color: var(--go8-primary-color);
}

.page-resources-go8-latest-offers__cta-final .page-resources-go8-latest-offers__section-description {
    color: var(--go8-primary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-resources-go8-latest-offers__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-go8-latest-offers__cta-final .page-resources-go8-latest-offers__btn--primary {
    background-color: var(--go8-primary-color);
    color: var(--go8-secondary-color);
    border-color: var(--go8-primary-color);
}

.page-resources-go8-latest-offers__cta-final .page-resources-go8-latest-offers__btn--primary:hover {
    background-color: var(--go8-background-dark);
    border-color: var(--go8-background-dark);
    color: var(--go8-secondary-color);
}

.page-resources-go8-latest-offers__cta-final .page-resources-go8-latest-offers__btn--secondary {
    background-color: transparent;
    color: var(--go8-primary-color);
    border-color: var(--go8-primary-color);
}

.page-resources-go8-latest-offers__cta-final .page-resources-go8-latest-offers__btn--secondary:hover {
    background-color: var(--go8-primary-color);
    color: var(--go8-secondary-color);
}

.page-resources-go8-latest-offers__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-resources-go8-latest-offers__hero {
        padding: 100px 0;
    }

    .page-resources-go8-latest-offers__hero-content {
        text-align: left;
    }

    .page-resources-go8-latest-offers__hero-title {
        font-size: 4.5em;
    }

    .page-resources-go8-latest-offers__hero .page-resources-go8-latest-offers__container {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .page-resources-go8-latest-offers__hero-image-wrapper {
        display: block;
        flex: 1;
        text-align: right;
    }

    .page-resources-go8-latest-offers__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-resources-go8-latest-offers__steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .page-resources-go8-latest-offers__steps li {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }

    .page-resources-go8-latest-offers__features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .page-resources-go8-latest-offers__hero-title {
        font-size: 2.5em;
    }

    .page-resources-go8-latest-offers__hero-description {
        font-size: 1em;
    }

    .page-resources-go8-latest-offers__section-title {
        font-size: 1.8em;
    }

    .page-resources-go8-latest-offers__section-description {
        font-size: 0.95em;
    }

    .page-resources-go8-latest-offers__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-go8-latest-offers__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}