/* style/platform-review-security-compliance.css */
:root {
    --page-primary-color: #0A2E59;
    --page-accent-color: #FFA500;
    --page-text-color-light: #F8F8F8;
    --page-text-color-dark: #333333;
    --page-background-light: #FFFFFF;
    --page-background-dark: #0A2E59;
    --page-border-color: #e0e0e0;
}

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

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

.page-platform-review-security-compliance__hero-section {
    background: linear-gradient(135deg, var(--page-background-dark) 0%, var(--page-primary-color) 100%);
    color: var(--page-text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-platform-review-security-compliance__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_security_pattern,digital_grid]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-platform-review-security-compliance__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-text-color-light);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-platform-review-security-compliance__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-review-security-compliance__cta-button {
    display: inline-block;
    background-color: var(--page-accent-color);
    color: var(--page-background-dark);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-platform-review-security-compliance__cta-button:hover {
    background-color: #FFB733; /* Slightly lighter orange */
    transform: translateY(-3px);
}

.page-platform-review-security-compliance__content-section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-platform-review-security-compliance__article {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-platform-review-security-compliance__section-title {
    font-size: 2em;
    color: var(--page-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--page-accent-color);
    padding-bottom: 10px;
    font-weight: bold;
}

.page-platform-review-security-compliance__section-title:first-of-type {
    margin-top: 0;
}

.page-platform-review-security-compliance__sub-section-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-platform-review-security-compliance__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--page-text-color-dark);
}

.page-platform-review-security-compliance__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-platform-review-security-compliance__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-platform-review-security-compliance__benefits-list li {
    background-color: #f0f8ff; /* Light blue */
    border-left: 5px solid var(--page-accent-color);
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 1.05em;
    color: var(--page-text-color-dark);
    display: flex;
    align-items: center;
}

.page-platform-review-security-compliance__benefits-list li i {
    color: var(--page-primary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

.page-platform-review-security-compliance__cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-platform-review-security-compliance__cta-group .page-platform-review-security-compliance__cta-button {
    margin: 0 10px;
}

.page-platform-review-security-compliance__cta-button--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
}

.page-platform-review-security-compliance__cta-button--secondary:hover {
    background-color: #072247; /* Darker primary */
}

.page-platform-review-security-compliance__faq-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-platform-review-security-compliance__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--page-border-color);
    padding-bottom: 15px;
}

.page-platform-review-security-compliance__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-platform-review-security-compliance__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-platform-review-security-compliance__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--page-accent-color);
    transition: transform 0.3s ease;
}

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

.page-platform-review-security-compliance__faq-answer {
    font-size: 1.0em;
    color: var(--page-text-color-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-left: 10px;
}

.page-platform-review-security-compliance__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platform-review-security-compliance__main-title {
        font-size: 2em;
    }

    .page-platform-review-security-compliance__subtitle {
        font-size: 1em;
    }

    .page-platform-review-security-compliance__hero-section,
    .page-platform-review-security-compliance__content-section {
        padding: 40px 0;
    }

    .page-platform-review-security-compliance__article {
        padding: 20px;
    }

    .page-platform-review-security-compliance__section-title {
        font-size: 1.6em;
    }

    .page-platform-review-security-compliance__sub-section-title {
        font-size: 1.3em;
    }

    .page-platform-review-security-compliance__cta-group .page-platform-review-security-compliance__cta-button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-platform-review-security-compliance__main-title {
        font-size: 1.6em;
    }

    .page-platform-review-security-compliance__subtitle {
        font-size: 0.9em;
    }

    .page-platform-review-security-compliance__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-platform-review-security-compliance__article {
        padding: 15px;
    }

    .page-platform-review-security-compliance__section-title {
        font-size: 1.4em;
    }

    .page-platform-review-security-compliance__sub-section-title {
        font-size: 1.1em;
    }
    
    .page-platform-review-security-compliance__faq-question {
        font-size: 1.1em;
    }
}