/* Section Confiance */
.security-trust-section {
    background: linear-gradient(to bottom, #f3f4f6 0%, #ffffff 100%);
    padding: 80px 40px;
}

.security-trust-container {
    max-width: 900px;
    margin: 0 auto;
}

.security-trust-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.security-shield-icon {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    border-radius: 50% 50% 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
    animation: security-float 3s ease-in-out infinite;
}

@keyframes security-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.security-shield-icon::before {
    content: '✓';
    font-size: 120px;
    color: white;
    font-weight: 700;
}

.security-trust-content h1 {
    font-size: 2.8rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.security-trust-content h1 .highlight {
    color: #6366f1;
}

.security-trust-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.security-feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.security-feature-card h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.security-feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Section Protection */
.security-protection-section {
    background: white;
    padding: 80px 40px;
}

.security-protection-container {
    max-width: 1200px;
    margin: 0 auto;
}

.security-protection-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.security-protection-header h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.security-protection-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.security-payment-logos {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.security-payment-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.security-logo-mtn {
    background: #ffcb05;
    color: #1f2937;
}

.security-logo-moov {
    background: #00adef;
    color: white;
}

.security-logo-orange {
    background: #ff6600;
    color: white;
}

.security-logo-visa {
    background: #1434cb;
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .security-trust-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .security-shield-icon {
        margin: 0 auto;
    }

    .security-features-grid {
        grid-template-columns: 1fr;
    }

    .security-trust-content h1 {
        font-size: 2rem;
    }

    .security-protection-header h2 {
        font-size: 1.8rem;
    }
}
