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

:root {
    --sodo66-primary-color: #2C3E50;
    --sodo66-secondary-color: #F39C12;
    --sodo66-text-light: #ecf0f1;
    --sodo66-text-dark: #34495e;
    --sodo66-background-light: #f8f9fa;
    --sodo66-background-dark: #233140;
    --sodo66-border-color: #ddd;
}

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

.page-resources-sodo66-latest-promotions .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-sodo66-latest-promotions .hero-section {
    background: linear-gradient(135deg, var(--sodo66-primary-color), var(--sodo66-secondary-color));
    color: var(--sodo66-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-sodo66-latest-promotions .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-resources-sodo66-latest-promotions .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--sodo66-text-light);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-sodo66-latest-promotions .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--sodo66-text-light);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-sodo66-latest-promotions .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1em;
}

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

.page-resources-sodo66-latest-promotions .btn-primary:hover {
    background-color: darken(var(--sodo66-secondary-color), 10%);
    transform: translateY(-2px);
}

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

.page-resources-sodo66-latest-promotions .btn-secondary:hover {
    background-color: lighten(var(--sodo66-primary-color), 10%);
    transform: translateY(-2px);
}

.page-resources-sodo66-latest-promotions .btn-text {
    background: none;
    border: none;
    color: var(--sodo66-primary-color);
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-resources-sodo66-latest-promotions .btn-text:hover {
    color: var(--sodo66-secondary-color);
}

.page-resources-sodo66-latest-promotions .content-section {
    padding: 50px 0;
    background-color: var(--sodo66-background-light);
}

.page-resources-sodo66-latest-promotions .article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-sodo66-latest-promotions .section-title {
    font-size: 2.2em;
    color: var(--sodo66-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--sodo66-secondary-color);
    padding-bottom: 10px;
    font-weight: 700;
}

.page-resources-sodo66-latest-promotions .subsection-title {
    font-size: 1.8em;
    color: var(--sodo66-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-sodo66-latest-promotions p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--sodo66-text-dark);
}

.page-resources-sodo66-latest-promotions ul,
.page-resources-sodo66-latest-promotions ol {
    margin-bottom: 1em;
    padding-left: 25px;
    font-size: 1.05em;
    color: var(--sodo66-text-dark);
}

.page-resources-sodo66-latest-promotions ul li {
    margin-bottom: 0.5em;
    list-style-type: disc;
}

.page-resources-sodo66-latest-promotions ol li {
    margin-bottom: 0.5em;
    list-style-type: decimal;
}

.page-resources-sodo66-latest-promotions a {
    color: var(--sodo66-secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-sodo66-latest-promotions a:hover {
    color: darken(var(--sodo66-secondary-color), 15%);
    text-decoration: underline;
}

.page-resources-sodo66-latest-promotions .article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-sodo66-latest-promotions .cta-block {
    background-color: var(--sodo66-background-dark);
    color: var(--sodo66-text-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-resources-sodo66-latest-promotions .cta-block p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--sodo66-text-light);
}

.page-resources-sodo66-latest-promotions .cta-block .btn {
    font-size: 1.1em;
    padding: 12px 30px;
}

.page-resources-sodo66-latest-promotions .faq-item {
    background-color: #fcfcfc;
    border: 1px solid var(--sodo66-border-color);
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-sodo66-latest-promotions .faq-question {
    font-size: 1.3em;
    color: var(--sodo66-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-resources-sodo66-latest-promotions .faq-answer {
    font-size: 1em;
    color: var(--sodo66-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    padding-left: 10px;
    margin-bottom: 0;
}

.page-resources-sodo66-latest-promotions .faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

.page-resources-sodo66-latest-promotions .return-link {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--sodo66-border-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-sodo66-latest-promotions .hero-title {
        font-size: 2.5em;
    }
    .page-resources-sodo66-latest-promotions .hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-sodo66-latest-promotions .section-title {
        font-size: 1.8em;
    }
    .page-resources-sodo66-latest-promotions .subsection-title {
        font-size: 1.5em;
    }
    .page-resources-sodo66-latest-promotions .article-container {
        padding: 25px;
    }
    .page-resources-sodo66-latest-promotions .cta-block p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-sodo66-latest-promotions .hero-title {
        font-size: 2em;
    }
    .page-resources-sodo66-latest-promotions .hero-section {
        padding: 60px 0;
    }
    .page-resources-sodo66-latest-promotions .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-resources-sodo66-latest-promotions .section-title {
        font-size: 1.6em;
    }
    .page-resources-sodo66-latest-promotions .subsection-title {
        font-size: 1.3em;
    }
    .page-resources-sodo66-latest-promotions p,
    .page-resources-sodo66-latest-promotions ul li,
    .page-resources-sodo66-latest-promotions ol li {
        font-size: 0.95em;
    }
    .page-resources-sodo66-latest-promotions .article-container {
        padding: 15px;
    }
}