/* style/resources-data-security-privacy-protection.css */
:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --accent-color: #FFA500;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark-card: rgba(255, 255, 255, 0.1);
    --border-light: #e0e0e0;
}

/* Ensure page content has top padding to clear fixed header */
.page-resources-data-security-privacy-protection {
    color: var(--text-light); /* Default to light text for potentially dark body background */
    background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-resources-data-security-privacy-protection__hero-content-section {
    padding-top: 120px; /* Desktop: Adjust based on fixed header height */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    text-align: center;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-data-security-privacy-protection__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__intro-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__intro-text a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-data-security-privacy-protection__intro-text a:hover {
    color: #ffd700;
}

.page-resources-data-security-privacy-protection__cta-wrapper {
    margin-top: 30px;
}

.page-resources-data-security-privacy-protection__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-data-security-privacy-protection__cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-data-security-privacy-protection__section {
    padding: 60px 0;
    background-color: var(--dark-bg-1);
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__text-block a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-data-security-privacy-protection__text-block a:hover {
    color: #ffd700;
}

.page-resources-data-security-privacy-protection__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-data-security-privacy-protection__feature-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-data-security-privacy-protection__feature-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    border-radius: 8px;
    object-fit: cover;
}

.page-resources-data-security-privacy-protection__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__sub-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__dark-bg {
    background: linear-gradient(135deg, #0056b3, var(--primary-color));
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-data-security-privacy-protection__content-text {
    flex: 1;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__content-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__content-image-wrapper {
    flex: 0 0 400px;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-data-security-privacy-protection__content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-data-security-privacy-protection__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    color: var(--text-light);
}

.page-resources-data-security-privacy-production__checklist li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.page-resources-data-security-privacy-protection__checklist-icon {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: -2px;
}

/* FAQ Section */
.page-resources-data-security-privacy-protection__faq-list {
    margin-top: 40px;
}

.page-resources-data-security-privacy-protection__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-data-security-privacy-protection__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__faq-item.active .page-resources-data-security-privacy-protection__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-data-security-privacy-protection__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.page-resources-data-security-privacy-protection__faq-question:active {
    background: rgba(255, 255, 255, 0.2);
}

.page-resources-data-security-privacy-protection__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-light);
}

.page-resources-data-security-privacy-protection__faq-question h3 a {
    color: var(--text-light);
    text-decoration: none;
}

.page-resources-data-security-privacy-protection__faq-question h3 a:hover {
    text-decoration: underline;
}

.page-resources-data-security-privacy-protection__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--accent-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-resources-data-security-privacy-protection__faq-item.active .page-resources-data-security-privacy-protection__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Ensure all images are responsive */
.page-resources-data-security-privacy-protection img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-data-security-privacy-protection__main-title {
        font-size: 2.8em;
    }
    .page-resources-data-security-privacy-protection__section-title {
        font-size: 2em;
    }
    .page-resources-data-security-privacy-protection__sub-title {
        font-size: 1.6em;
    }
    .page-resources-data-security-privacy-protection__content-row {
        flex-direction: column;
        gap: 20px;
    }
    .page-resources-data-security-privacy-protection__content-image-wrapper {
        max-width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .page-resources-data-security-privacy-protection__hero-content-section {
        padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 40px;
    }
    .page-resources-data-security-privacy-protection__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-data-security-privacy-protection__main-title {
        font-size: 2.2em;
    }
    .page-resources-data-security-privacy-protection__intro-text {
        font-size: 1em;
    }
    .page-resources-data-security-privacy-protection__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-data-security-privacy-protection__section {
        padding: 40px 0;
    }
    .page-resources-data-security-privacy-protection__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-data-security-privacy-protection__text-block {
        font-size: 0.95em;
    }
    .page-resources-data-security-privacy-protection__feature-grid {
        gap: 20px;
    }
    .page-resources-data-security-privacy-protection__feature-card {
        padding: 20px;
    }
    .page-resources-data-security-privacy-protection__feature-title {
        font-size: 1.3em;
    }
    .page-resources-data-security-privacy-protection__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-resources-data-security-privacy-protection__checklist li {
        font-size: 0.95em;
    }
    .page-resources-data-security-privacy-protection__faq-question {
        padding: 15px 20px;
    }
    .page-resources-data-security-privacy-protection__faq-question h3 {
        font-size: 1em;
    }
    .page-resources-data-security-privacy-protection__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-resources-data-security-privacy-protection__faq-item.active .page-resources-data-security-privacy-protection__faq-answer {
        padding: 15px 20px !important;
    }
    /* Mobile image responsive adaptation */
    .page-resources-data-security-privacy-protection img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}