.category-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.category-section:nth-child(even) {
    background-color: #E8E4D6;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-weight: bold;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .category-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}