/* style/security-guarantee-fair-play.css */
.page-security-guarantee-fair-play {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

.page-security-guarantee-fair-play .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-security-guarantee-fair-play .hero-section {
    background: linear-gradient(135deg, #1A202C, #3c4a6b); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-security-guarantee-fair-play .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-security-guarantee-fair-play .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #e5dfd3;
}

.page-security-guarantee-fair-play .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-security-guarantee-fair-play .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
}

.page-security-guarantee-fair-play .btn-primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-security-guarantee-fair-play .content-section {
    padding: 60px 0;
}

.page-security-guarantee-fair-play .bg-secondary {
    background-color: #2a3342; /* Slightly lighter dark background */
}

.page-security-guarantee-fair-play .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for section titles */
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
}

.page-security-guarantee-fair-play .text-content p {
    margin-bottom: 15px;
    color: #e5dfd3;
    font-size: 1.1em;
}

.page-security-guarantee-fair-play .section-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-security-guarantee-fair-play .section-grid.reverse {
    flex-direction: row-reverse;
}

.page-security-guarantee-fair-play .section-grid .text-content,
.page-security-guarantee-fair-play .section-grid .image-content {
    flex: 1;
}

.page-security-guarantee-fair-play .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-security-guarantee-fair-play .text-center {
    text-align: center;
}

.page-security-guarantee-fair-play .large-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 20px auto 40px;
    color: #ccc;
}

.page-security-guarantee-fair-play .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-security-guarantee-fair-play .feature-item {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #3c4a6b;
}

.page-security-guarantee-fair-play .feature-item:hover {
    transform: translateY(-5px);
    background-color: #3c4a6b;
}

.page-security-guarantee-fair-play .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icons gold-ish */
}

.page-security-guarantee-fair-play .feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-security-guarantee-fair-play .feature-item p {
    color: #e5dfd3;
    font-size: 1em;
}

.page-security-guarantee-fair-play .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-security-guarantee-fair-play .step-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.page-security-guarantee-fair-play .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-security-guarantee-fair-play .step-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-security-guarantee-fair-play .step-item p {
    color: #e5dfd3;
}

.page-security-guarantee-fair-play .social-responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-security-guarantee-fair-play .sr-item {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #3c4a6b;
}

.page-security-guarantee-fair-play .sr-item:hover {
    transform: translateY(-5px);
    background-color: #3c4a6b;
}

.page-security-guarantee-fair-play .sr-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icons gold-ish */
}

.page-security-guarantee-fair-play .sr-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-security-guarantee-fair-play .sr-item p {
    color: #e5dfd3;
    font-size: 1em;
}

.page-security-guarantee-fair-play .faq-section {
    padding: 60px 0;
}

.page-security-guarantee-fair-play .faq-items {
    margin-top: 40px;
}

.page-security-guarantee-fair-play .faq-item {
    background-color: #2a3342;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3c4a6b;
}

.page-security-guarantee-fair-play .faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-security-guarantee-fair-play .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-security-guarantee-fair-play .faq-item h3.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-security-guarantee-fair-play .faq-item p {
    color: #e5dfd3;
    font-size: 1.1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.page-security-guarantee-fair-play .faq-item p.show {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 15px;
}

.page-security-guarantee-fair-play .cta-section {
    background-color: #1A202C;
    padding: 80px 0;
    text-align: center;
    color: #e5dfd3;
}

.page-security-guarantee-fair-play .cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-security-guarantee-fair-play .cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: #ccc;
}

.page-security-guarantee-fair-play .btn-cta {
    margin: 0 15px;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-security-guarantee-fair-play .btn-cta.btn-secondary-cta {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-security-guarantee-fair-play .btn-cta.btn-secondary-cta:hover {
    background-color: #FFD700;
    color: #1A202C;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-security-guarantee-fair-play .hero-title {
        font-size: 2.8em;
    }
    .page-security-guarantee-fair-play .hero-subtitle,
    .page-security-guarantee-fair-play .large-text,
    .page-security-guarantee-fair-play .cta-description {
        font-size: 1.1em;
    }
    .page-security-guarantee-fair-play .section-title {
        font-size: 2em;
    }
    .page-security-guarantee-fair-play .section-grid {
        flex-direction: column;
    }
    .page-security-guarantee-fair-play .section-grid.reverse {
        flex-direction: column;
    }
    .page-security-guarantee-fair-play .feature-grid,
    .page-security-guarantee-fair-play .process-steps,
    .page-security-guarantee-fair-play .social-responsibility-grid {
        grid-template-columns: 1fr;
    }
    .page-security-guarantee-fair-play .btn-cta {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-security-guarantee-fair-play .hero-section {
        padding: 80px 0;
    }
    .page-security-guarantee-fair-play .hero-title {
        font-size: 2.2em;
    }
    .page-security-guarantee-fair-play .section-title {
        font-size: 1.8em;
        text-align: center;
    }
    .page-security-guarantee-fair-play .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-security-guarantee-fair-play .cta-title {
        font-size: 2.5em;
    }
    .page-security-guarantee-fair-play .cta-description {
        font-size: 1em;
    }
    .page-security-guarantee-fair-play .btn-cta {
        display: block;
        width: 80%;
        margin: 0 auto 20px;
    }
    .page-security-guarantee-fair-play .faq-item h3 {
        font-size: 1.2em;
    }
    .page-security-guarantee-fair-play .faq-item p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-security-guarantee-fair-play .hero-section {
        padding: 60px 0;
    }
    .page-security-guarantee-fair-play .hero-title {
        font-size: 1.8em;
    }
    .page-security-guarantee-fair-play .hero-subtitle {
        font-size: 0.9em;
    }
    .page-security-guarantee-fair-play .section-title {
        font-size: 1.5em;
    }
    .page-security-guarantee-fair-play .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-security-guarantee-fair-play .cta-title {
        font-size: 2em;
    }
    .page-security-guarantee-fair-play .feature-item h3,
    .page-security-guarantee-fair-play .step-item h3,
    .page-security-guarantee-fair-play .sr-item h3 {
        font-size: 1.3em;
    }
}