.tools-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.tools-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-card h2 {
    margin: 0.5rem 0;
    color: #333;
}

.tool-card p {
    color: #666;
    margin-top: 0.5rem;
}

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