/* style/resources-sv368-latest-promotions.css */

:root {
    --page-primary-color: #B22222;
    --page-secondary-color: #FFD700;
    --page-text-dark: #333333;
    --page-text-light: #FFFFFF;
    --page-background-light: #F8F8F8;
    --page-background-dark: #222222;
    --page-accent-color: #4ddddd; /* Complementary to primary for emphasis */
}

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

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

.page-resources-sv368-latest-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-sv368-latest-promotions__section:nth-of-type(even) {
    background-color: var(--page-background-light);
}

.page-resources-sv368-latest-promotions__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-resources-sv368-latest-promotions__sub-section-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-sv368-latest-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-text-dark);
    text-align: left;
}

/* Hero Section */
.page-resources-sv368-latest-promotions__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #a01d1d 50%, var(--page-secondary-color) 100%);
    color: var(--page-text-light);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-resources-sv368-latest-promotions__hero-content {
    z-index: 10;
    max-width: 900px;
}

.page-resources-sv368-latest-promotions__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--page-text-light);
}

.page-resources-sv368-latest-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-resources-sv368-latest-promotions__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-sv368-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;
    cursor: pointer;
    border: none;
}

.page-resources-sv368-latest-promotions__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sv368-latest-promotions__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-resources-sv368-latest-promotions__btn--secondary {
    background-color: transparent;
    color: var(--page-text-light);
    border: 2px solid var(--page-text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sv368-latest-promotions__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-resources-sv368-latest-promotions__btn--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-resources-sv368-latest-promotions__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-sv368-latest-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}

.page-resources-sv368-latest-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(50%);
}

/* Promotion Types Grid */
.page-resources-sv368-latest-promotions__promotion-types .page-resources-sv368-latest-promotions__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

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

.page-resources-sv368-latest-promotions__grid-item {
    background-color: var(--page-text-light);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-primary-color);
}

.page-resources-sv368-latest-promotions__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-sv368-latest-promotions__grid-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--page-secondary-color);
}

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

.page-resources-sv368-latest-promotions__grid-description {
    font-size: 1em;
    color: var(--page-text-dark);
    text-align: left;
    min-height: 120px; /* Ensure consistent height */
}

/* How to Participate */
.page-resources-sv368-latest-promotions__how-to-participate {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-resources-sv368-latest-promotions__how-to-participate .page-resources-sv368-latest-promotions__section-title {
    color: var(--page-secondary-color);
}

.page-resources-sv368-latest-promotions__how-to-participate .page-resources-sv368-latest-promotions__text-block {
    color: var(--page-text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.page-resources-sv368-latest-promotions__ordered-list {
    list-style-type: none;
    counter-reset: item;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.page-resources-sv368-latest-promotions__ordered-list li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    text-align: left;
    font-size: 1.1em;
    color: var(--page-text-light);
}

.page-resources-sv368-latest-promotions__ordered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-sv368-latest-promotions__ordered-list li strong {
    color: var(--page-secondary-color);
}

.page-resources-sv368-latest-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.page-resources-sv368-latest-promotions__cta-buttons .page-resources-sv368-latest-promotions__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
}

.page-resources-sv368-latest-promotions__cta-buttons .page-resources-sv368-latest-promotions__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-sv368-latest-promotions__cta-buttons .page-resources-sv368-latest-promotions__btn--secondary:hover {
    background-color: #a01d1d;
    border-color: var(--page-text-light);
}

/* Terms and Conditions */
.page-resources-sv368-latest-promotions__terms-conditions .page-resources-sv368-latest-promotions__text-block {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.page-resources-sv368-latest-promotions__unordered-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-resources-sv368-latest-promotions__unordered-list li {
    background-color: var(--page-text-light);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid var(--page-primary-color);
    border-radius: 8px;
    text-align: left;
    font-size: 1.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sv368-latest-promotions__unordered-list li strong {
    color: var(--page-primary-color);
}

/* Why SV368 */
.page-resources-sv368-latest-promotions__why-sv368 {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-resources-sv368-latest-promotions__why-sv368 .page-resources-sv368-latest-promotions__section-title {
    color: var(--page-secondary-color);
}

.page-resources-sv368-latest-promotions__why-sv368 .page-resources-sv368-latest-promotions__text-block {
    color: var(--page-text-light);
    text-align: left;
}

.page-resources-sv368-latest-promotions__why-sv368 .page-resources-sv368-latest-promotions__sub-section-title {
    color: var(--page-secondary-color);
}

.page-resources-sv368-latest-promotions__flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-resources-sv368-latest-promotions__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-resources-sv368-latest-promotions__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--page-secondary-color);
}

.page-resources-sv368-latest-promotions__text-wrapper {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

/* FAQ Section */
.page-resources-sv368-latest-promotions__faq .page-resources-sv368-latest-promotions__section-title {
    margin-bottom: 40px;
}

.page-resources-sv368-latest-promotions__accordion {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

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

.page-resources-sv368-latest-promotions__accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-sv368-latest-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-sv368-latest-promotions__accordion-header.active {
    background-color: #a01d1d;
}

.page-resources-sv368-latest-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-resources-sv368-latest-promotions__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: var(--page-text-dark);
}

/* Final CTA */
.page-resources-sv368-latest-promotions__final-cta {
    background: linear-gradient(90deg, var(--page-primary-color), var(--page-secondary-color));
    color: var(--page-text-light);
    padding: 80px 20px;
}

.page-resources-sv368-latest-promotions__final-cta-content {
    max-width: 900px;
}

.page-resources-sv368-latest-promotions__final-cta .page-resources-sv368-latest-promotions__section-title {
    color: var(--page-text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-resources-sv368-latest-promotions__final-cta .page-resources-sv368-latest-promotions__section-title::after {
    background-color: var(--page-text-light);
}

.page-resources-sv368-latest-promotions__final-cta .page-resources-sv368-latest-promotions__text-block {
    color: var(--page-text-light);
    margin-bottom: 40px;
    text-align: center;
}

.page-resources-sv368-latest-promotions__final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-resources-sv368-latest-promotions__final-cta-buttons .page-resources-sv368-latest-promotions__btn--primary {
    background-color: var(--page-text-light);
    color: var(--page-primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sv368-latest-promotions__final-cta-buttons .page-resources-sv368-latest-promotions__btn--primary:hover {
    background-color: #eee;
}

.page-resources-sv368-latest-promotions__final-cta-buttons .page-resources-sv368-latest-promotions__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-text-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sv368-latest-promotions__final-cta-buttons .page-resources-sv368-latest-promotions__btn--secondary:hover {
    background-color: #a01d1d;
    border-color: var(--page-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-sv368-latest-promotions__hero-title {
        font-size: 3em;
    }
    .page-resources-sv368-latest-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-sv368-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-resources-sv368-latest-promotions__flex-container {
        flex-direction: column;
    }
    .page-resources-sv368-latest-promotions__image-wrapper, .page-resources-sv368-latest-promotions__text-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-sv368-latest-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-resources-sv368-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-sv368-latest-promotions__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sv368-latest-promotions__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-resources-sv368-latest-promotions__section {
        padding: 40px 0;
    }
    .page-resources-sv368-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-resources-sv368-latest-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-sv368-latest-promotions__ordered-list li, .page-resources-sv368-latest-promotions__unordered-list li {
        padding-left: 20px;
    }
    .page-resources-sv368-latest-promotions__ordered-list li::before {
        left: 0;
    }
    .page-resources-sv368-latest-promotions__cta-buttons, .page-resources-sv368-latest-promotions__final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sv368-latest-promotions__cta-buttons .page-resources-sv368-latest-promotions__btn,
    .page-resources-sv368-latest-promotions__final-cta-buttons .page-resources-sv368-latest-promotions__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-resources-sv368-latest-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-resources-sv368-latest-promotions__accordion-content p {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-sv368-latest-promotions__hero-title {
        font-size: 2em;
    }
    .page-resources-sv368-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-sv368-latest-promotions__section-title {
        font-size: 1.5em;
    }
    .page-resources-sv368-latest-promotions__text-block {
        font-size: 0.95em;
    }
    .page-resources-sv368-latest-promotions__grid-title {
        font-size: 1.4em;
    }
    .page-resources-sv368-latest-promotions__grid-description {
        font-size: 0.9em;
    }
    .page-resources-sv368-latest-promotions__ordered-list li {
        font-size: 1em;
    }
}