/* Tool Cards Styles */
.tool-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tool-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-content {
    padding: 1.5rem;
}

.tool-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.tool-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.tool-features li {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.tool-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Category Page Styles */
.category-header {
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.category-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-description {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}