/* style/resources-88xx-vin-latest-promotions.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-btn-bg: #C30808;
    --login-btn-bg: #C30808;
    --register-login-font: #FFFF00;
    --bg-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
}

.page-resources-88xx-vin-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.page-resources-88xx-vin-latest-promotions__section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-88xx-vin-latest-promotions__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.page-resources-88xx-vin-latest-promotions__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__section-title,
.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__paragraph,
.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__list li p {
    color: var(--text-color-light);
}

.page-resources-88xx-vin-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-88xx-vin-latest-promotions__section-title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
    color: var(--primary-color);
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__section-title {
    color: var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-88xx-vin-latest-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a8a63 100%); /* Slightly lighter green for gradient */
}

.page-resources-88xx-vin-latest-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-resources-88xx-vin-latest-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-resources-88xx-vin-latest-promotions__hero-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-color-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-88xx-vin-latest-promotions__hero-description {
    font-size: 20px;
    color: var(--text-color-light);
    margin-bottom: 30px;
}

.page-resources-88xx-vin-latest-promotions__hero-image {
    width: 100%;
    max-width: 1000px; /* Adjust max-width for image */
    margin-top: 30px;
}

.page-resources-88xx-vin-latest-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-88xx-vin-latest-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--register-btn-bg);
    color: var(--register-login-font);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-resources-88xx-vin-latest-promotions__cta-button:hover {
    background: #e62e2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-88xx-vin-latest-promotions__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-88xx-vin-latest-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-88xx-vin-latest-promotions__card {
    background: var(--secondary-color);
    color: var(--text-color-dark);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-88xx-vin-latest-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-88xx-vin-latest-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

.page-resources-88xx-vin-latest-promotions__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-88xx-vin-latest-promotions__card-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-resources-88xx-vin-latest-promotions__btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-resources-88xx-vin-latest-promotions__btn-primary:hover {
    background: #005a2e;
}

.page-resources-88xx-vin-latest-promotions__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-88xx-vin-latest-promotions__guide-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-top: 80px;
}

.page-resources-88xx-vin-latest-promotions__guide-number {
    position: absolute;
    top: 25px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-88xx-vin-latest-promotions__guide-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-88xx-vin-latest-promotions__guide-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.page-resources-88xx-vin-latest-promotions__guide-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-88xx-vin-latest-promotions__guide-item p a:hover {
    text-decoration: underline;
}

.page-resources-88xx-vin-latest-promotions__list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
    text-align: left;
}

.page-resources-88xx-vin-latest-promotions__list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-color-light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-left: 5px solid var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__list li strong {
    color: var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-88xx-vin-latest-promotions__feature-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-resources-88xx-vin-latest-promotions__feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-88xx-vin-latest-promotions__feature-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.page-resources-88xx-vin-latest-promotions__image-wrapper {
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-88xx-vin-latest-promotions__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ styles */
.page-resources-88xx-vin-latest-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-88xx-vin-latest-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-resources-88xx-vin-latest-promotions__faq-item.active .page-resources-88xx-vin-latest-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--text-color-dark);
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-item.active .page-resources-88xx-vin-latest-promotions__faq-answer {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
}

.page-resources-88xx-vin-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-question {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.page-resources-88xx-vin-latest-promotions__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.page-resources-88xx-vin-latest-promotions__faq-question:active {
    background: #eeeeee;
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-question:active {
    background: rgba(255, 255, 255, 0.2);
}

.page-resources-88xx-vin-latest-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-question h3 {
    color: var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-toggle {
    color: var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__faq-item.active .page-resources-88xx-vin-latest-promotions__faq-toggle {
    color: #333;
    transform: rotate(45deg);
}

.page-resources-88xx-vin-latest-promotions__dark-bg .page-resources-88xx-vin-latest-promotions__faq-item.active .page-resources-88xx-vin-latest-promotions__faq-toggle {
    color: var(--secondary-color);
}

.page-resources-88xx-vin-latest-promotions__text-center {
    text-align: center;
}

.page-resources-88xx-vin-latest-promotions__cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-resources-88xx-vin-latest-promotions__hero-title {
        font-size: 42px;
    }
    .page-resources-88xx-vin-latest-promotions__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-resources-88xx-vin-latest-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-88xx-vin-latest-promotions__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-88xx-vin-latest-promotions__hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-resources-88xx-vin-latest-promotions__hero-description {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .page-resources-88xx-vin-latest-promotions__hero-image img,
    .page-resources-88xx-vin-latest-promotions__card-image,
    .page-resources-88xx-vin-latest-promotions__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }
    .page-resources-88xx-vin-latest-promotions__section {
        padding: 40px 15px;
    }
    .page-resources-88xx-vin-latest-promotions__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-resources-88xx-vin-latest-promotions__paragraph {
        font-size: 16px;
    }
    .page-resources-88xx-vin-latest-promotions__card {
        padding: 20px;
    }
    .page-resources-88xx-vin-latest-promotions__card-title {
        font-size: 20px;
    }
    .page-resources-88xx-vin-latest-promotions__guide-item {
        padding: 25px;
        padding-top: 70px;
    }
    .page-resources-88xx-vin-latest-promotions__guide-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 20px;
        left: 25px;
    }
    .page-resources-88xx-vin-latest-promotions__guide-item h3 {
        font-size: 19px;
    }
    .page-resources-88xx-vin-latest-promotions__list li {
        font-size: 16px;
        padding: 15px 20px;
    }
    .page-resources-88xx-vin-latest-promotions__feature-title {
        font-size: 20px;
    }
    .page-resources-88xx-vin-latest-promotions__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-resources-88xx-vin-latest-promotions__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-resources-88xx-vin-latest-promotions__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 22px;
    }
    .page-resources-88xx-vin-latest-promotions__faq-answer {
        padding: 0 15px;
    }
    .page-resources-88xx-vin-latest-promotions__faq-item.active .page-resources-88xx-vin-latest-promotions__faq-answer {
        padding: 15px !important;
    }
    .page-resources-88xx-vin-latest-promotions__cta-button,
    .page-resources-88xx-vin-latest-promotions__btn-primary,
    .page-resources-88xx-vin-latest-promotions__btn-secondary,
    .page-resources-88xx-vin-latest-promotions a[class*="button"],
    .page-resources-88xx-vin-latest-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-88xx-vin-latest-promotions__cta-buttons-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-resources-88xx-vin-latest-promotions__container,
    .page-resources-88xx-vin-latest-promotions__grid,
    .page-resources-88xx-vin-latest-promotions__guide-steps,
    .page-resources-88xx-vin-latest-promotions__features-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-resources-88xx-vin-latest-promotions__card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-resources-88xx-vin-latest-promotions__hero-title {
        font-size: 28px;
    }
    .page-resources-88xx-vin-latest-promotions__section-title {
        font-size: 24px;
    }
    .page-resources-88xx-vin-latest-promotions__cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}