.categories-section {
    background-color: #000;
    padding: 2.5rem 0 2rem;
    color: #fff;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 2rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 1.5rem 1rem;
}

.category-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-link {
    text-decoration: none;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.category-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Inclusive Sans', sans-serif;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
}

.category-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: width 0.3s ease;
}

.category-item:hover .category-link::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .categories-section {
        padding: 2rem 0;
    }

    .categories-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-item:nth-child(2n)::after {
        display: none;
    }

    .category-icon {
        font-size: 2.3rem;
    }

    .category-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .categories-container {
        grid-template-columns: 1fr;
    }

    .category-item::after {
        display: none;
    }

    .category-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.2rem 1rem;
    }

    .category-item:last-child {
        border-bottom: none;
    }
}