/* style/resources-interpretation-of-ok9-latest-promotions.css */

/* Variables for consistency */
:root {
    --page-resources-interpretation-of-ok9-latest-promotions-primary-color: #003366;
    --page-resources-interpretation-of-ok9-latest-promotions-secondary-color: #FFD700;
    --page-resources-interpretation-of-ok9-latest-promotions-text-light: #FFFFFF;
    --page-resources-interpretation-of-ok9-latest-promotions-text-dark: #333333;
    --page-resources-interpretation-of-ok9-latest-promotions-background-light: #F8F8F8;
    --page-resources-interpretation-of-ok9-latest-promotions-background-dark: #002244; /* Slightly darker than primary for contrast */
}

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

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

/* Hero Section */
.page-resources-interpretation-of-ok9-latest-promotions__hero-section {
    background: linear-gradient(135deg, var(--page-resources-interpretation-of-ok9-latest-promotions-primary-color), var(--page-resources-interpretation-of-ok9-latest-promotions-background-dark));
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-resources-interpretation-of-ok9-latest-promotions__hero-section .page-resources-interpretation-of-ok9-latest-promotions__container {
    position: relative;
    z-index: 1;
}

.page-resources-interpretation-of-ok9-latest-promotions__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color);
    font-weight: bold;
}

.page-resources-interpretation-of-ok9-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-text-light);
}

.page-resources-interpretation-of-ok9-latest-promotions__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-resources-interpretation-of-ok9-latest-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none;
}

.page-resources-interpretation-of-ok9-latest-promotions__btn--primary {
    background-color: var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color);
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-primary-color);
}

.page-resources-interpretation-of-ok9-latest-promotions__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-resources-interpretation-of-ok9-latest-promotions__btn--secondary {
    background-color: var(--page-resources-interpretation-of-ok9-latest-promotions-primary-color);
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color);
    border: 2px solid var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color);
}

.page-resources-interpretation-of-ok9-latest-promotions__btn--secondary:hover {
    background-color: var(--page-resources-interpretation-of-ok9-latest-promotions-background-dark);
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color);
    transform: translateY(-2px);
}


/* Content Section */
.page-resources-interpretation-of-ok9-latest-promotions__content-section {
    padding: 40px 0;
    background-color: var(--page-resources-interpretation-of-ok9-latest-promotions-background-light);
}

.page-resources-interpretation-of-ok9-latest-promotions__section-title {
    font-size: 2.2em;
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

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

.page-resources-interpretation-of-ok9-latest-promotions__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-text-dark);
}

.page-resources-interpretation-of-ok9-latest-promotions__list,
.page-resources-interpretation-of-ok9-latest-promotions__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-text-dark);
}

.page-resources-interpretation-of-ok9-latest-promotions__ordered-list {
    list-style-type: decimal;
}

.page-resources-interpretation-of-ok9-latest-promotions__list li,
.page-resources-interpretation-of-ok9-latest-promotions__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-interpretation-of-ok9-latest-promotions__image-inline {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Block */
.page-resources-interpretation-of-ok9-latest-promotions__cta-block {
    background-color: var(--page-resources-interpretation-of-ok9-latest-promotions-primary-color);
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-text-light);
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-resources-interpretation-of-ok9-latest-promotions__cta-title {
    font-size: 2.5em;
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-interpretation-of-ok9-latest-promotions__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-interpretation-of-ok9-latest-promotions__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-interpretation-of-ok9-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__sub-section-title {
        font-size: 1.5em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-title {
        font-size: 2em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-resources-interpretation-of-ok9-latest-promotions__hero-section {
        padding: 60px 0;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__section-title {
        font-size: 1.6em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__sub-section-title {
        font-size: 1.3em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__paragraph,
    .page-resources-interpretation-of-ok9-latest-promotions__list li,
    .page-resources-interpretation-of-ok9-latest-promotions__ordered-list li {
        font-size: 0.95em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__image-inline,
    .page-resources-interpretation-of-ok9-latest-promotions__hero-image,
    .page-resources-interpretation-of-ok9-latest-promotions__cta-image {
        margin: 20px auto;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-block {
        padding: 40px 20px;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-interpretation-of-ok9-latest-promotions__hero-section {
        padding: 40px 0;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__hero-title {
        font-size: 1.5em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__section-title {
        font-size: 1.4em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__sub-section-title {
        font-size: 1.2em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-title {
        font-size: 1.5em;
    }
    .page-resources-interpretation-of-ok9-latest-promotions__cta-text {
        font-size: 0.9em;
    }
}

/* Ensure contrast for text on primary/secondary colors */
.page-resources-interpretation-of-ok9-latest-promotions__hero-section p,
.page-resources-interpretation-of-ok9-latest-promotions__hero-section li,
.page-resources-interpretation-of-ok9-latest-promotions__cta-block p,
.page-resources-interpretation-of-ok9-latest-promotions__cta-block li {
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-text-light); /* White text on dark background */
}

.page-resources-interpretation-of-ok9-latest-promotions__btn--primary {
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-primary-color); /* Dark text on gold button */
}

.page-resources-interpretation-of-ok9-latest-promotions__btn--secondary {
    color: var(--page-resources-interpretation-of-ok9-latest-promotions-secondary-color); /* Gold text on dark button */
}