.tools-resources {
    padding: 80px 0;
    background: #f8fafc;
}

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

.tool-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.tool-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.tool-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.tool-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

.tool-cta {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.tool-cta:hover {
    transform: translateY(-2px);
}
