:root {
    --j886-primary-color: #11A84E;
    --j886-secondary-color: #22C768;
    --j886-button-gradient-start: #2AD16F;
    --j886-button-gradient-end: #13994A;
    --j886-card-bg: #11271B;
    --j886-background: #08160F;
    --j886-text-main: #F2FFF6;
    --j886-text-secondary: #A7D9B8;
    --j886-border: #2E7A4E;
    --j886-glow: #57E38D;
    --j886-gold: #F2C14E;
    --j886-divider: #1E3A2A;
    --j886-deep-green: #0A4B2C;
    --text-on-dark: #ffffff; /* For dark backgrounds */
    --text-on-light: #333333; /* For light backgrounds */
}

.page-blog-j886-security-fairness {
    background-color: var(--j886-background); /* Dark background */
    color: var(--j886-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-j886-security-fairness__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-j886-security-fairness__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

.page-blog-j886-security-fairness__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-blog-j886-security-fairness__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
    display: block;
}

.page-blog-j886-security-fairness__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    color: var(--text-on-dark);
}

.page-blog-j886-security-fairness__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--j886-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-j886-security-fairness__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--j886-text-main);
}

.page-blog-j886-security-fairness__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-j886-security-fairness__btn-primary,
.page-blog-j886-security-fairness__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-j886-security-fairness__btn-primary {
    background: linear-gradient(180deg, var(--j886-button-gradient-start) 0%, var(--j886-button-gradient-end) 100%);
    color: var(--text-on-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-j886-security-fairness__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-j886-security-fairness__btn-secondary {
    background: transparent;
    color: var(--j886-text-main);
    border: 2px solid var(--j886-border);
}

.page-blog-j886-security-fairness__btn-secondary:hover {
    background: rgba(var(--j886-border), 0.1);
    transform: translateY(-3px);
}

/* Content Section */
.page-blog-j886-security-fairness__content-section {
    padding: 80px 0;
    background-color: var(--j886-background);
    color: var(--j886-text-main);
}

.page-blog-j886-security-fairness__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--j886-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-j886-security-fairness__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--j886-primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-blog-j886-security-fairness p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--j886-text-secondary);
}

.page-blog-j886-security-fairness strong {
    color: var(--j886-text-main);
}

.page-blog-j886-security-fairness__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-j886-security-fairness__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--j886-text-secondary);
}

.page-blog-j886-security-fairness__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--j886-primary-color);
    font-weight: bold;
}

.page-blog-j886-security-fairness__image-inline {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
    display: block;
}

/* Feature Grid */
.page-blog-j886-security-fairness__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.page-blog-j886-security-fairness__feature-item {
    background-color: var(--j886-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--j886-border);
}

.page-blog-j886-security-fairness__feature-title {
    font-size: 1.3rem;
    color: var(--j886-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-j886-security-fairness__feature-item p {
    color: var(--j886-text-secondary);
    margin-bottom: 0;
}

/* Testimonials */
.page-blog-j886-security-fairness__testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.page-blog-j886-security-fairness__testimonial-card {
    background-color: var(--j886-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--j886-border);
}

.page-blog-j886-security-fairness__testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--j886-text-secondary);
}

.page-blog-j886-security-fairness__testimonial-author {
    font-weight: bold;
    color: var(--j886-text-main);
    text-align: right;
}

/* FAQ Section */
.page-blog-j886-security-fairness__faq-list {
    margin-top: 40px;
}

.page-blog-j886-security-fairness__faq-item {
    background-color: var(--j886-card-bg);
    border: 1px solid var(--j886-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-j886-security-fairness__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--j886-text-main);
    font-size: 1.1rem;
    background-color: var(--j886-card-bg);
    list-style: none; /* For details/summary */
}

.page-blog-j886-security-fairness__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-blog-j886-security-fairness__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--j886-gold);
    transition: transform 0.3s ease;
}

.page-blog-j886-security-fairness__faq-item[open] .page-blog-j886-security-fairness__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-j886-security-fairness__faq-answer {
    padding: 0 20px 20px;
    color: var(--j886-text-secondary);
    font-size: 1rem;
}

.page-blog-j886-security-fairness__faq-answer p {
    margin-bottom: 0;
}

/* Call to Action Section */
.page-blog-j886-security-fairness__cta-section {
    background-color: var(--j886-deep-green);
    color: var(--text-on-dark);
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-j886-security-fairness__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--j886-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-blog-j886-security-fairness__cta-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--j886-text-main);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-j886-security-fairness__hero-content {
        padding: 15px;
    }
    .page-blog-j886-security-fairness__main-title {
        font-size: 3rem;
    }
    .page-blog-j886-security-fairness__description {
        font-size: 1.1rem;
    }
    .page-blog-j886-security-fairness__cta-buttons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-j886-security-fairness__hero-section {
        padding: 40px 0;
    }
    .page-blog-j886-security-fairness__main-title {
        font-size: 2.2rem;
    }
    .page-blog-j886-security-fairness__description {
        font-size: 1rem;
    }
    .page-blog-j886-security-fairness__cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-blog-j886-security-fairness__btn-primary,
    .page-blog-j886-security-fairness__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-j886-security-fairness__content-section {
        padding: 50px 0;
    }
    .page-blog-j886-security-fairness__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .page-blog-j886-security-fairness__sub-title {
        font-size: 1.4rem;
        margin-top: 40px;
    }
    .page-blog-j886-security-fairness p,
    .page-blog-j886-security-fairness__list li {
        font-size: 0.95rem;
    }
    .page-blog-j886-security-fairness__image-inline {
        margin: 30px 0;
    }
    .page-blog-j886-security-fairness__feature-grid,
    .page-blog-j886-security-fairness__testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-j886-security-fairness__feature-item,
    .page-blog-j886-security-fairness__testimonial-card {
        padding: 25px;
    }
    .page-blog-j886-security-fairness__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-blog-j886-security-fairness__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }
    .page-blog-j886-security-fairness__cta-section {
        padding: 40px 15px;
        margin-top: 40px;
    }
    .page-blog-j886-security-fairness__cta-title {
        font-size: 2rem;
    }
    .page-blog-j886-security-fairness__cta-description {
        font-size: 1rem;
    }

    /* Images responsiveness */
    .page-blog-j886-security-fairness img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-j886-security-fairness__container,
    .page-blog-j886-security-fairness__hero-section,
    .page-blog-j886-security-fairness__content-section,
    .page-blog-j886-security-fairness__cta-section,
    .page-blog-j886-security-fairness__feature-grid,
    .page-blog-j886-security-fairness__testimonials,
    .page-blog-j886-security-fairness__faq-list,
    .page-blog-j886-security-fairness__feature-item,
    .page-blog-j886-security-fairness__testimonial-card,
    .page-blog-j886-security-fairness__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-blog-j886-security-fairness__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-j886-security-fairness__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}