.safe-hero {
    background: #1a2a3a; /* Deep calm blue */
    padding: 80px 10%;
    text-align: center;
    color: white;
}

.safe-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8;
}

.warning-signs {
    background: #fdfdfd;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid #e74c3c; /* Red warning line */
    margin-bottom: 40px;
}

.check-list { list-style: none; padding: 0; }
.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.check-list li::before {
    content: "⚠️";
    margin-right: 10px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tool-card {
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.org-card {
    display: block;
    background: #3498db;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 10px 0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s;
}

.org-card:hover {
    background: #2980b9;
}