.tools-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tools-container h1 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #2E5BFF;
}

.tools-container .intro {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 700px) {
    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tool-card {
    display: block;
    border: 1px solid #e2e2e2;
    padding: 22px;
    border-radius: 8px;
    text-decoration: none;
    background: white;
    transition: 0.15s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: #ccc;
}

.tool-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.tool-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    font-size: 12px;
    background: #f2f2f2;
    padding: 4px 10px;
    border-radius: 4px;
    color: #333;
}
