.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 40px;
    
}
.cards1 h1{
    text-align: center;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cards2 h1{
    text-align: center;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cart {
    background-color: #97233f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.33% - 20px);
}

.cart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.cart img {
    width: 100%;
    height: 220px;
    object-fit:fill;
    border-radius: 5px;    
      display: block;
}

.cart h3 {
    font-size: 20px;
    color: #fff;
   margin-top: 20px;

}

.cart p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}


@media (max-width: 900px) {
    .cart {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .cart {
        width: 100%;
    }
}


