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

/* Base styles for the page content */
.page-reviews-platform-security {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-reviews-platform-security__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-reviews-platform-security__section:nth-child(even) {
    background-color: #f0f5fa;
}

.page-reviews-platform-security__section-title {
    color: #003366;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

/* Hero Section */
.page-reviews-platform-security__hero {
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-reviews-platform-security__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: hero-pulse 15s infinite alternate;
}

@keyframes hero-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-reviews-platform-security__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-reviews-platform-security__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-reviews-platform-security__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-reviews-platform-security__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Content Wrapper for text and image */
.page-reviews-platform-security__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-reviews-platform-security__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-reviews-platform-security__text-content {
    flex: 1;
    font-size: 1.1em;
}

.page-reviews-platform-security__text-content p {
    margin-bottom: 15px;
}

.page-reviews-platform-security__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-reviews-platform-security__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.page-reviews-platform-security__grid-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-reviews-platform-security__item-title {
    color: #003366;
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

/* CTA Section within content */
.page-reviews-platform-security__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #e0f2f7;
    border-radius: 10px;
    border: 1px solid #cce7ee;
}

.page-reviews-platform-security__cta-section p {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 25px;
    font-weight: bold;
}

/* User Tips List */
.page-reviews-platform-security__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-reviews-platform-security__list li {
    background-color: #f0f8ff;
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-reviews-platform-security__list li strong {
    color: #003366;
}

/* FAQ Section */
.page-reviews-platform-security__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
}

.page-reviews-platform-security__faq-question {
    color: #003366;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-reviews-platform-security__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-reviews-platform-security__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-reviews-platform-security__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-top: 10px;
    display: none;
}

.page-reviews-platform-security__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-reviews-platform-security__hero-title {
        font-size: 2.8em;
    }
    .page-reviews-platform-security__hero-subtitle {
        font-size: 1.1em;
    }
    .page-reviews-platform-security__section-title {
        font-size: 2em;
    }
    .page-reviews-platform-security__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-reviews-platform-security__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-reviews-platform-security__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-reviews-platform-security__hero {
        padding: 80px 0;
    }
    .page-reviews-platform-security__hero-title {
        font-size: 2.2em;
    }
    .page-reviews-platform-security__hero-subtitle {
        font-size: 1em;
    }
    .page-reviews-platform-security__section {
        padding: 40px 0;
    }
    .page-reviews-platform-security__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-reviews-platform-security__grid {
        grid-template-columns: 1fr;
    }
    .page-reviews-platform-security__item-title {
        font-size: 1.3em;
    }
    .page-reviews-platform-security__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-reviews-platform-security__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-reviews-platform-security__hero {
        padding: 60px 0;
    }
    .page-reviews-platform-security__hero-title {
        font-size: 1.8em;
    }
    .page-reviews-platform-security__hero-subtitle {
        font-size: 0.9em;
    }
    .page-reviews-platform-security__section-title {
        font-size: 1.5em;
    }
    .page-reviews-platform-security__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-reviews-platform-security__faq-question {
        font-size: 1.1em;
    }
    .page-reviews-platform-security__faq-answer {
        font-size: 0.95em;
    }
}