/* Security Page Styles */
.security-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.security-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #6E0D25;
}

.security-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.security-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.security-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.security-points {
    list-style: none;
    margin: 1.5rem 0;
}

.security-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.security-points li:hover {
    background: linear-gradient(135deg, #e8f2ff, #d8e8ff);
    transform: translateX(5px);
}

.security-points li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.security-points li span {
    font-weight: 600;
    color: #2c3e50;
}

.divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    border: none;
    margin: 3rem 0;
    border-radius: 2px;
}

.about-content {
    background: linear-gradient(135deg, #667eea10, #764ba210);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #667eea20;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.03), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.trust-badge::before {
    content: "🛡️";
    margin-right: 0.5rem;
}

.creator-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .security-container {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .security-header h1 {
        font-size: 2rem;
    }

    .security-section {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}