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

/* Variables */
:root {
    --page-resources-ww88-latest-offers-primary-color: #003366;
    --page-resources-ww88-latest-offers-secondary-color: #FFCC00;
    --page-resources-ww88-latest-offers-text-light: #ffffff;
    --page-resources-ww88-latest-offers-text-dark: #333333;
    --page-resources-ww88-latest-offers-background-light: #f4f7f6;
    --page-resources-ww88-latest-offers-background-dark: #002244;
    --page-resources-ww88-latest-offers-accent-color: #ffcc99; /* Derived from complementary of primary */
    --page-resources-ww88-latest-offers-card-bg: #ffffff;
    --page-resources-ww88-latest-offers-border-color: #e0e0e0;
}

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

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

.page-resources-ww88-latest-offers__hero {
    background: linear-gradient(135deg, var(--page-resources-ww88-latest-offers-primary-color), var(--page-resources-ww88-latest-offers-secondary-color));
    color: var(--page-resources-ww88-latest-offers-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-ww88-latest-offers__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-resources-ww88-latest-offers__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-resources-ww88-latest-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-resources-ww88-latest-offers__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-ww88-latest-offers__btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-ww88-latest-offers__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;
    cursor: pointer;
    text-align: center;
}

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

.page-resources-ww88-latest-offers__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker yellow */
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-resources-ww88-latest-offers__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-ww88-latest-offers__btn--outline {
    background-color: transparent;
    color: var(--page-resources-ww88-latest-offers-primary-color);
    border: 2px solid var(--page-resources-ww88-latest-offers-primary-color);
}

.page-resources-ww88-latest-offers__btn--outline:hover {
    background-color: var(--page-resources-ww88-latest-offers-primary-color);
    color: var(--page-resources-ww88-latest-offers-text-light);
}

.page-resources-ww88-latest-offers__section {
    padding: 60px 0;
}

.page-resources-ww88-latest-offers__section:nth-of-type(even) {
    background-color: var(--page-resources-ww88-latest-offers-background-light);
}

.page-resources-ww88-latest-offers__section-title {
    font-size: 2.5em;
    color: var(--page-resources-ww88-latest-offers-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-ww88-latest-offers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-resources-ww88-latest-offers-secondary-color);
    border-radius: 2px;
}

.page-resources-ww88-latest-offers__subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-resources-ww88-latest-offers-text-dark);
}

.page-resources-ww88-latest-offers__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-resources-ww88-latest-offers__grid-two-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.page-resources-ww88-latest-offers__text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-ww88-latest-offers__image-wrapper {
    text-align: center;
}

.page-resources-ww88-latest-offers__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-ww88-latest-offers__grid-three-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-ww88-latest-offers__card {
    background-color: var(--page-resources-ww88-latest-offers-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-ww88-latest-offers__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-ww88-latest-offers__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-resources-ww88-latest-offers__card-text {
    font-size: 1em;
    color: var(--page-resources-ww88-latest-offers-text-dark);
}

.page-resources-ww88-latest-offers__deep-dive .page-resources-ww88-latest-offers__promo-item {
    background-color: var(--page-resources-ww88-latest-offers-card-bg);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-ww88-latest-offers__promo-item:last-child {
    margin-bottom: 0;
}

.page-resources-ww88-latest-offers__promo-title {
    font-size: 2em;
    color: var(--page-resources-ww88-latest-offers-primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.page-resources-ww88-latest-offers__promo-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-ww88-latest-offers__promo-item p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-resources-ww88-latest-offers-text-dark);
}

.page-resources-ww88-latest-offers__promo-subtitle {
    font-size: 1.4em;
    color: var(--page-resources-ww88-latest-offers-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-ww88-latest-offers__promo-item ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-ww88-latest-offers__promo-item ul li {
    margin-bottom: 10px;
}

.page-resources-ww88-latest-offers__cta-final {
    background-color: var(--page-resources-ww88-latest-offers-primary-color);
    color: var(--page-resources-ww88-latest-offers-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources-ww88-latest-offers__cta-final .page-resources-ww88-latest-offers__section-title {
    color: var(--page-resources-ww88-latest-offers-secondary-color);
}

.page-resources-ww88-latest-offers__cta-final .page-resources-ww88-latest-offers__subtitle {
    color: var(--page-resources-ww88-latest-offers-text-light);
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-ww88-latest-offers__hero-title {
        font-size: 3em;
    }
    .page-resources-ww88-latest-offers__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-ww88-latest-offers__section-title {
        font-size: 2em;
    }
    .page-resources-ww88-latest-offers__subtitle {
        font-size: 1.1em;
    }
    .page-resources-ww88-latest-offers__promo-title {
        font-size: 1.8em;
    }
    .page-resources-ww88-latest-offers__promo-subtitle {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-resources-ww88-latest-offers__hero {
        padding: 80px 0;
    }
    .page-resources-ww88-latest-offers__hero-title {
        font-size: 2.5em;
    }
    .page-resources-ww88-latest-offers__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-ww88-latest-offers__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-ww88-latest-offers__section {
        padding: 40px 0;
    }
    .page-resources-ww88-latest-offers__section-title {
        font-size: 1.8em;
    }
    .page-resources-ww88-latest-offers__grid-three-cols {
        grid-template-columns: 1fr;
    }
    .page-resources-ww88-latest-offers__promo-title {
        font-size: 1.6em;
    }
    .page-resources-ww88-latest-offers__promo-subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-ww88-latest-offers__hero-title {
        font-size: 2em;
    }
    .page-resources-ww88-latest-offers__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-ww88-latest-offers__btn-group {
        flex-direction: column;
    }
    .page-resources-ww88-latest-offers__btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 15px auto;
    }
    .page-resources-ww88-latest-offers__section-title {
        font-size: 1.5em;
    }
    .page-resources-ww88-latest-offers__subtitle {
        font-size: 0.9em;
    }
    .page-resources-ww88-latest-offers__promo-title {
        font-size: 1.4em;
    }
    .page-resources-ww88-latest-offers__promo-subtitle {
        font-size: 1.1em;
    }
    .page-resources-ww88-latest-offers__promo-item p, .page-resources-ww88-latest-offers__promo-item ul li {
        font-size: 0.95em;
    }
}