.safety-page-wrap { max-width: 1000px; margin: 40px auto; padding: 0 20px; font-family: 'Inter', system-ui, sans-serif; }
.safety-header { text-align: center; margin-bottom: 50px; }
.safety-header-icon { font-size: 4rem; margin-bottom: 15px; line-height: 1; }
.safety-header h1 { font-size: 2.5rem; color: #0f172a; margin-bottom: 15px; font-weight: 800; letter-spacing: -0.02em; }
.safety-header p { font-size: 1.15rem; color: #475569; line-height: 1.6; max-width: 700px; margin: 0 auto; }

.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }

.safety-card { background: #fff; padding: 35px 30px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.safety-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.safety-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: #3b82f6; }
.safety-card:nth-child(2)::before { background: #ef4444; }
.safety-card:nth-child(3)::before { background: #f59e0b; }
.safety-card:nth-child(4)::before { background: #10b981; }
.safety-card:nth-child(5)::before { background: #8b5cf6; }
.safety-card:nth-child(6)::before { background: #64748b; }

.safety-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.safety-card:nth-child(1) .safety-icon { background: #eff6ff; color: #3b82f6; }
.safety-card:nth-child(2) .safety-icon { background: #fef2f2; color: #ef4444; }
.safety-card:nth-child(3) .safety-icon { background: #fffbeb; color: #f59e0b; }
.safety-card:nth-child(4) .safety-icon { background: #ecfdf5; color: #10b981; }
.safety-card:nth-child(5) .safety-icon { background: #f5f3ff; color: #8b5cf6; }
.safety-card:nth-child(6) .safety-icon { background: #f8fafc; color: #64748b; }

.safety-card-title { font-size: 1.3rem; color: #1e293b; margin-bottom: 15px; font-weight: 700; margin-top: 0; }
.safety-card p { color: #475569; line-height: 1.6; font-size: 1rem; margin: 0; }

.safety-conclusion { background: #1e293b; border-radius: 16px; padding: 40px; color: #fff; text-align: center; margin-bottom: 40px; }
.safety-conclusion h2 { font-size: 1.8rem; margin-bottom: 15px; color: #f8fafc; }
.safety-conclusion p { font-size: 1.1rem; color: #94a3b8; line-height: 1.6; max-width: 800px; margin: 0 auto 25px auto; }

/* Linkek a konklúzióban */
.safety-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.safety-btn { display: inline-flex; align-items: center; justify-content: center; background: #3b82f6; color: #fff !important; text-decoration: none; padding: 12px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem; transition: background 0.2s; }
.safety-btn:hover { background: #2563eb; }
.safety-btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.2); }
.safety-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

@media (max-width: 768px) {
    .safety-header h1 { font-size: 2rem; }
    .safety-conclusion { padding: 30px 20px; }
    .safety-actions { flex-direction: column; }
    .safety-btn { width: 100%; }
}