/* style/k88-platform-reviews-security-compliance.css */

:root {
    --page-k88-primary-color: #0A2463;
    --page-k88-secondary-color: #FFD700;
    --page-k88-text-dark: #333;
    --page-k88-text-light: #fff;
    --page-k88-bg-light: #f9f9f9;
    --page-k88-bg-dark: #071a47; /* Slightly darker than primary for contrast */
    --page-k88-accent-color: #f5db9c; /* Complementary to primary */
}

.page-k88-platform-reviews-security-compliance {
    font-family: 'Arial', sans-serif;
    color: var(--page-k88-text-dark);
    line-height: 1.6;
}

.page-k88-platform-reviews-security-compliance__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-k88-platform-reviews-security-compliance__hero {
    background: linear-gradient(135deg, var(--page-k88-primary-color) 0%, #1a3e80 100%); /* Slightly lighter blue for gradient */
    color: var(--page-k88-text-light);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-k88-platform-reviews-security-compliance__hero-content {
    max-width: 800px;
    margin-bottom: 30px;
}

.page-k88-platform-reviews-security-compliance__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-k88-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-k88-platform-reviews-security-compliance__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-k88-platform-reviews-security-compliance__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-k88-platform-reviews-security-compliance__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-k88-platform-reviews-security-compliance__btn--primary {
    background-color: var(--page-k88-secondary-color);
    color: var(--page-k88-primary-color);
    border-color: var(--page-k88-secondary-color);
}

.page-k88-platform-reviews-security-compliance__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-k88-platform-reviews-security-compliance__btn--secondary {
    background-color: transparent;
    color: var(--page-k88-secondary-color);
    border-color: var(--page-k88-secondary-color);
}

.page-k88-platform-reviews-security-compliance__btn--secondary:hover {
    background-color: var(--page-k88-secondary-color);
    color: var(--page-k88-primary-color);
    transform: translateY(-3px);
}

.page-k88-platform-reviews-security-compliance__hero-image-container {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.page-k88-platform-reviews-security-compliance__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-k88-platform-reviews-security-compliance__section {
    padding: 60px 0;
}

.page-k88-platform-reviews-security-compliance__section--alt-bg {
    background-color: var(--page-k88-bg-light);
}

.page-k88-platform-reviews-security-compliance__section-title {
    font-size: 2.5em;
    color: var(--page-k88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-k88-platform-reviews-security-compliance__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-k88-secondary-color);
    border-radius: 2px;
}

.page-k88-platform-reviews-security-compliance__subsection-title {
    font-size: 1.8em;
    color: var(--page-k88-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-k88-platform-reviews-security-compliance p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Features Grid */
.page-k88-platform-reviews-security-compliance__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-k88-platform-reviews-security-compliance__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-k88-platform-reviews-security-compliance__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-k88-platform-reviews-security-compliance__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-k88-platform-reviews-security-compliance__feature-title {
    font-size: 1.4em;
    color: var(--page-k88-primary-color);
    margin-bottom: 15px;
}

.page-k88-platform-reviews-security-compliance__feature-item p {
    font-size: 1em;
    color: #666;
}

/* Lists */
.page-k88-platform-reviews-security-compliance__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-k88-platform-reviews-security-compliance__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-k88-platform-reviews-security-compliance__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--page-k88-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.page-k88-platform-reviews-security-compliance__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.page-k88-platform-reviews-security-compliance__call-to-action {
    text-align: center;
    margin-top: 60px;
    background-color: var(--page-k88-primary-color);
    color: var(--page-k88-text-light);
    padding: 40px 30px;
    border-radius: 10px;
}

.page-k88-platform-reviews-security-compliance__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-k88-text-light);
}

.page-k88-platform-reviews-security-compliance__call-to-action .page-k88-platform-reviews-security-compliance__btn {
    font-size: 1.2em;
    padding: 18px 35px;
}

/* FAQ Section */
.page-k88-platform-reviews-security-compliance__faq {
    margin-top: 40px;
}

.page-k88-platform-reviews-security-compliance__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-k88-platform-reviews-security-compliance__faq-question {
    font-size: 1.3em;
    color: var(--page-k88-primary-color);
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f4f8; /* Light background for question */
    transition: background-color 0.3s ease;
}

.page-k88-platform-reviews-security-compliance__faq-question:hover {
    background-color: #e0e7ed;
}

.page-k88-platform-reviews-security-compliance__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-k88-secondary-color);
    transition: transform 0.3s ease;
}

.page-k88-platform-reviews-security-compliance__faq-item.active .page-k88-platform-reviews-security-compliance__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-k88-platform-reviews-security-compliance__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-k88-platform-reviews-security-compliance__faq-item.active .page-k88-platform-reviews-security-compliance__faq-answer {
    max-height: 300px; /* Adjust as needed for content */
    padding: 0 25px 20px 25px;
}

/* Bottom CTA */
.page-k88-platform-reviews-security-compliance__cta-bottom {
    background-color: var(--page-k88-primary-color);
    color: var(--page-k88-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-k88-platform-reviews-security-compliance__cta-bottom-content {
    max-width: 900px;
}

.page-k88-platform-reviews-security-compliance__cta-bottom-title {
    font-size: 2.8em;
    color: var(--page-k88-secondary-color);
    margin-bottom: 25px;
}

.page-k88-platform-reviews-security-compliance__cta-bottom-text {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-k88-platform-reviews-security-compliance__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-k88-platform-reviews-security-compliance__hero-title {
        font-size: 2.8em;
    }
    .page-k88-platform-reviews-security-compliance__hero-subtitle {
        font-size: 1.2em;
    }
    .page-k88-platform-reviews-security-compliance__section-title {
        font-size: 2em;
    }
    .page-k88-platform-reviews-security-compliance__subsection-title {
        font-size: 1.6em;
    }
    .page-k88-platform-reviews-security-compliance__cta-bottom-title {
        font-size: 2.4em;
    }
    .page-k88-platform-reviews-security-compliance__cta-bottom-text {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-k88-platform-reviews-security-compliance__hero {
        padding: 60px 0;
    }
    .page-k88-platform-reviews-security-compliance__hero-title {
        font-size: 2.2em;
    }
    .page-k88-platform-reviews-security-compliance__hero-subtitle {
        font-size: 1.1em;
    }
    .page-k88-platform-reviews-security-compliance__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-k88-platform-reviews-security-compliance__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-k88-platform-reviews-security-compliance__section {
        padding: 40px 0;
    }
    .page-k88-platform-reviews-security-compliance__section-title {
        font-size: 1.8em;
    }
    .page-k88-platform-reviews-security-compliance__features-grid {
        grid-template-columns: 1fr;
    }
    .page-k88-platform-reviews-security-compliance__cta-bottom-title {
        font-size: 2em;
    }
    .page-k88-platform-reviews-security-compliance__cta-bottom-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-k88-platform-reviews-security-compliance__hero-title {
        font-size: 1.8em;
    }
    .page-k88-platform-reviews-security-compliance__hero-subtitle {
        font-size: 1em;
    }
    .page-k88-platform-reviews-security-compliance__section-title {
        font-size: 1.6em;
    }
    .page-k88-platform-reviews-security-compliance__faq-question {
        font-size: 1.1em;
    }
    .page-k88-platform-reviews-security-compliance__faq-answer {
        font-size: 0.95em;
    }
    .page-k88-platform-reviews-security-compliance__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-k88-platform-reviews-security-compliance__call-to-action p {
        font-size: 1.1em;
    }
    .page-k88-platform-reviews-security-compliance__list li {
        font-size: 1em;
    }
    .page-k88-platform-reviews-security-compliance p {
        font-size: 1em;
    }
}