/* assets/css/protection.css */

.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.protection-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.protect-card {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.protect-card:hover {
    border-color: #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: scale(1.02);
}

.protect-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #000;
}

.protect-card p {
    color: #555;
    line-height: 1.6;
}
