/* tools.css */
.language-section {
    margin: 85px 55px;
    max-width: 800px;
}

.section-title {
    font-size: 1.3rem;
    color: #98CD00;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #98CD00, transparent);
}

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

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tool-item:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.tool-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.tool-item:hover .tool-icon {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.tool-item span {
    color: #b3b3b3;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.8;
}