/* style/resources-sodo369-latest-promotions-analysis.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-background: #121212;
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --login-button-color: #EA7C07;
}

.page-resources-sodo369-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--light-text-color); /* Body background is dark, so text is light */
    background-color: var(--dark-background);
}

.page-resources-sodo369-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a7fb8 100%);
    color: var(--light-text-color);
}

.page-resources-sodo369-latest-promotions-analysis__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-resources-sodo369-latest-promotions-analysis__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sodo369-latest-promotions-analysis__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-sodo369-latest-promotions-analysis__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-sodo369-latest-promotions-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-resources-sodo369-latest-promotions-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.page-resources-sodo369-latest-promotions-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--dark-background);
    color: var(--light-text-color);
}

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

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

.page-resources-sodo369-latest-promotions-analysis__sub-section-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-resources-sodo369-latest-promotions-analysis__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-text-color);
}

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

.page-resources-sodo369-latest-promotions-analysis__card {
    background-color: rgba(255, 255, 255, 0.1); /* Light background on dark body */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--light-text-color);
    height: 100%;
}

.page-resources-sodo369-latest-promotions-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sodo369-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

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

.page-resources-sodo369-latest-promotions-analysis__card-text {
    font-size: 1em;
    line-height: 1.7;
    flex-grow: 1;
}

.page-resources-sodo369-latest-promotions-analysis__guide-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.page-resources-sodo369-latest-promotions-analysis__guide-text-block {
    flex: 1;
}

.page-resources-sodo369-latest-promotions-analysis__guide-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-sodo369-latest-promotions-analysis__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-sodo369-latest-promotions-analysis__ordered-list,
.page-resources-sodo369-latest-promotions-analysis__unordered-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.page-resources-sodo369-latest-promotions-analysis__ordered-list li,
.page-resources-sodo369-latest-promotions-analysis__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-resources-sodo369-latest-promotions-analysis__benefit-card {
    background-color: rgba(255, 255, 255, 0.1); /* Light background on dark body */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--light-text-color);
}

.page-resources-sodo369-latest-promotions-analysis__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-resources-sodo369-latest-promotions-analysis__benefit-text {
    font-size: 1em;
    line-height: 1.7;
}

.page-resources-sodo369-latest-promotions-analysis__cta-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(90deg, #1a7fb8 0%, var(--primary-color) 100%);
    border-radius: 10px;
    padding: 30px;
    margin-top: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--light-text-color);
}

.page-resources-sodo369-latest-promotions-analysis__cta-image {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-sodo369-latest-promotions-analysis__cta-content {
    flex: 1;
    text-align: left;
}

.page-resources-sodo369-latest-promotions-analysis__cta-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-resources-sodo369-latest-promotions-analysis__cta-text {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-resources-sodo369-latest-promotions-analysis__faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--light-text-color);
    background-color: var(--dark-background);
}

.page-resources-sodo369-latest-promotions-analysis__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card on dark body */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-sodo369-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.page-resources-sodo369-latest-promotions-analysis__faq-question:hover {
    background-color: #1a7fb8;
}

.page-resources-sodo369-latest-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-sodo369-latest-promotions-analysis__faq-item.active .page-resources-sodo369-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-sodo369-latest-promotions-analysis__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text-color);
}

.page-resources-sodo369-latest-promotions-analysis__faq-item.active .page-resources-sodo369-latest-promotions-analysis__faq-answer {
    max-height: 1000px !important; /* Important to override any other max-height */
    padding: 15px 25px;
}

.page-resources-sodo369-latest-promotions-analysis__faq-answer p {
    margin: 0;
    font-size: 1em;
}

.page-resources-sodo369-latest-promotions-analysis__conclusion-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--dark-background);
    color: var(--light-text-color);
}

.page-resources-sodo369-latest-promotions-analysis__conclusion-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Buttons */
.page-resources-sodo369-latest-promotions-analysis__btn-primary,
.page-resources-sodo369-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-resources-sodo369-latest-promotions-analysis__btn-primary:hover {
    background-color: #1a7fb8;
    transform: translateY(-2px);
}

.page-resources-sodo369-latest-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.page-resources-sodo369-latest-promotions-analysis__inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-sodo369-latest-promotions-analysis__inline-link:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sodo369-latest-promotions-analysis__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sodo369-latest-promotions-analysis__section-title {
        font-size: 2em;
    }
    .page-resources-sodo369-latest-promotions-analysis__guide-flex,
    .page-resources-sodo369-latest-promotions-analysis__cta-section {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-sodo369-latest-promotions-analysis__cta-image {
        width: 80%;
        margin-bottom: 20px;
    }
    .page-resources-sodo369-latest-promotions-analysis__cta-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-resources-sodo369-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-sodo369-latest-promotions-analysis__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-resources-sodo369-latest-promotions-analysis__hero-title {
        font-size: 2em;
    }
    .page-resources-sodo369-latest-promotions-analysis__hero-description {
        font-size: 1em;
    }
    .page-resources-sodo369-latest-promotions-analysis__hero-buttons,
    .page-resources-sodo369-latest-promotions-analysis__conclusion-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sodo369-latest-promotions-analysis__btn-primary,
    .page-resources-sodo369-latest-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-sodo369-latest-promotions-analysis__content-area,
    .page-resources-sodo369-latest-promotions-analysis__faq-section,
    .page-resources-sodo369-latest-promotions-analysis__conclusion-section {
        padding: 30px 15px;
    }
    .page-resources-sodo369-latest-promotions-analysis__section-title {
        font-size: 1.8em;
    }
    .page-resources-sodo369-latest-promotions-analysis__sub-section-title {
        font-size: 1.5em;
    }
    .page-resources-sodo369-latest-promotions-analysis__promotions-grid,
    .page-resources-sodo369-latest-promotions-analysis__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-sodo369-latest-promotions-analysis__card,
    .page-resources-sodo369-latest-promotions-analysis__benefit-card {
        padding: 20px;
    }
    .page-resources-sodo369-latest-promotions-analysis__cta-section {
        padding: 20px;
        gap: 20px;
    }
    .page-resources-sodo369-latest-promotions-analysis__cta-image {
        width: 100%;
    }

    /* Image responsiveness for mobile */
    .page-resources-sodo369-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-sodo369-latest-promotions-analysis__section,
    .page-resources-sodo369-latest-promotions-analysis__card,
    .page-resources-sodo369-latest-promotions-analysis__container,
    .page-resources-sodo369-latest-promotions-analysis__hero-image-wrapper,
    .page-resources-sodo369-latest-promotions-analysis__guide-image-wrapper,
    .page-resources-sodo369-latest-promotions-analysis__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-resources-sodo369-latest-promotions-analysis__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .page-resources-sodo369-latest-promotions-analysis__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-sodo369-latest-promotions-analysis__hero-title {
        font-size: 1.8em;
    }
    .page-resources-sodo369-latest-promotions-analysis__section-title {
        font-size: 1.5em;
    }
    .page-resources-sodo369-latest-promotions-analysis__sub-section-title {
        font-size: 1.3em;
    }
    .page-resources-sodo369-latest-promotions-analysis__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-sodo369-latest-promotions-analysis__faq-answer {
        padding: 10px 20px;
    }
}