.tools-section {
    padding: 4rem 0;
    background-color: transparent;
    color: #fff;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tool-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.tool-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.tool-name {
    font-family: 'Clash Display', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Fix for FontAwesome icons if they are being overridden globally */
.fas, .far, .fal, .fad {
    font-family: "Font Awesome 6 Free", sans-serif !important;
}

.fab {
    font-family: "Font Awesome 6 Brands", sans-serif !important;
}