.section-title {
    color: #131944;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #131944;
}

.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img-container {
    height: 300px;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s;
}

.product-card:hover .product-img-container img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.section-container {
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .product-card {
        margin-bottom: 20px;
    }
}