:root {
    --k9cc-primary-color: #113B7A;
    --k9cc-secondary-color: #1D5FD1;
    --k9cc-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --k9cc-card-bg: #10233F;
    --k9cc-text-main: #F3F8FF;
    --k9cc-text-secondary: #AFC4E8;
    --k9cc-border-color: #244D84;
    --k9cc-glow-color: #4FA8FF;
    --k9cc-gold-color: #F2C14E;
    --k9cc-divider-color: #1B3357;
    --k9cc-deep-navy-color: #08162B;
}

.page-blog-k9cc-latest-promotions-review {
    color: var(--k9cc-text-main);
    background-color: var(--k9cc-deep-navy-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-k9cc-latest-promotions-review__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    background-color: var(--k9cc-deep-navy-color);
    overflow: hidden;
}

.page-blog-k9cc-latest-promotions-review__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

.page-blog-k9cc-latest-promotions-review__hero-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 200px;
}

.page-blog-k9cc-latest-promotions-review__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    background-color: var(--k9cc-deep-navy-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: -20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-blog-k9cc-latest-promotions-review__main-title {
    color: var(--k9cc-gold-color);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.page-blog-k9cc-latest-promotions-review__hero-description {
    color: var(--k9cc-text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-k9cc-latest-promotions-review__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--k9cc-button-gradient);
    color: var(--k9cc-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-blog-k9cc-latest-promotions-review__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-k9cc-latest-promotions-review__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-blog-k9cc-latest-promotions-review__section {
    padding: 60px 20px;
    background-color: var(--k9cc-deep-navy-color);
}

.page-blog-k9cc-latest-promotions-review__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-k9cc-latest-promotions-review__heading {
    color: var(--k9cc-gold-color);
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid var(--k9cc-divider-color);
    padding-bottom: 15px;
}

.page-blog-k9cc-latest-promotions-review__paragraph {
    color: var(--k9cc-text-secondary);
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-blog-k9cc-latest-promotions-review__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-k9cc-latest-promotions-review__card {
    background-color: var(--k9cc-card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--k9cc-border-color);
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-latest-promotions-review__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-k9cc-latest-promotions-review__card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-k9cc-latest-promotions-review__card-title {
    color: var(--k9cc-text-main);
    font-size: 1.4em;
    padding: 15px 20px 10px;
}

.page-blog-k9cc-latest-promotions-review__card-text {
    color: var(--k9cc-text-secondary);
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-blog-k9cc-latest-promotions-review__numbered-list,
.page-blog-k9cc-latest-promotions-review__unordered-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-blog-k9cc-latest-promotions-review__list-item {
    background-color: var(--k9cc-card-bg);
    border: 1px solid var(--k9cc-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-latest-promotions-review__list-title {
    color: var(--k9cc-gold-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-blog-k9cc-latest-promotions-review__list-description {
    color: var(--k9cc-text-secondary);
    font-size: 1em;
}

.page-blog-k9cc-latest-promotions-review__faq-list {
    margin-top: 30px;
}

.page-blog-k9cc-latest-promotions-review__faq-item {
    background-color: var(--k9cc-card-bg);
    border: 1px solid var(--k9cc-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-latest-promotions-review__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--k9cc-text-main);
    background-color: var(--k9cc-primary-color);
    border-bottom: 1px solid var(--k9cc-border-color);
    list-style: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-blog-k9cc-latest-promotions-review__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-k9cc-latest-promotions-review__faq-qtext {
    flex-grow: 1;
    color: var(--k9cc-text-main);
}

.page-blog-k9cc-latest-promotions-review__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--k9cc-gold-color);
}

.page-blog-k9cc-latest-promotions-review__faq-item[open] .page-blog-k9cc-latest-promotions-review__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-k9cc-latest-promotions-review__faq-answer {
    padding: 20px;
    border-top: 1px solid var(--k9cc-divider-color);
    background-color: var(--k9cc-card-bg);
    color: var(--k9cc-text-secondary);
}

.page-blog-k9cc-latest-promotions-review__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .page-blog-k9cc-latest-promotions-review__hero-content {
        padding: 30px 15px;
    }
    .page-blog-k9cc-latest-promotions-review__main-title {
        font-size: 2.5em;
    }
    .page-blog-k9cc-latest-promotions-review__heading {
        font-size: 2em;
    }
    .page-blog-k9cc-latest-promotions-review__section {
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-k9cc-latest-promotions-review__hero-content {
        padding: 25px 10px;
    }
    .page-blog-k9cc-latest-promotions-review__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-k9cc-latest-promotions-review__hero-description {
        font-size: 1em;
    }
    .page-blog-k9cc-latest-promotions-review__heading {
        font-size: 1.8em;
    }
    .page-blog-k9cc-latest-promotions-review__section {
        padding: 30px 15px;
    }
    .page-blog-k9cc-latest-promotions-review__cards-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-k9cc-latest-promotions-review__card img {
        height: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        min-height: 200px !important;
    }
    .page-blog-k9cc-latest-promotions-review img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-k9cc-latest-promotions-review__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-k9cc-latest-promotions-review__cta-button {
        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-blog-k9cc-latest-promotions-review__cta-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-k9cc-latest-promotions-review__faq-question {
        padding: 15px 15px;
        font-size: 1em;
    }
    .page-blog-k9cc-latest-promotions-review__faq-answer {
        padding: 15px;
    }
    .page-blog-k9cc-latest-promotions-review__hero-section {
        padding-top: 10px !important;
    }
    .page-blog-k9cc-latest-promotions-review {
      font-size: 16px;
      line-height: 1.6;
    }
}