.pricing-container-new {
    width: 80%;
    margin: 20px auto;
    font-family: sans-serif;
}

.switch-new, .location-new {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.location-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    margin: 0 5px;
    flex: 1;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: 150px;
}

.location-btn-new.active {
    color: #1568c9;
    border: 2px solid #1568c9;
}

.cards-new {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.card-new {
    border: 1px solid #ddd;
    padding: 20px;
    width: 280px;
    margin: 10px;
    text-align: center;
    flex-shrink: 0;
    border-radius: 20px;
    position: relative;
}

.recommended {
    background-color: #ff6600;
    text-align: center;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #fff;
    padding: 2px;
    border-radius: 20px;
    margin-bottom: 15px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 70%;
  }

.card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #1568c9;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.card-new:hover .features-new {
    color: #fff;
  }

.card-new:hover .price-new {
    color: #fff;
}

.card-new:hover .card-header-new {
    color: #fff;
}

.card-header-new {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    color: #1568c9;
}

.price-new {
    font-size: 2em;
    color: #1568c9;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 900;
    font-family: "Montserrat", sans-serif !important;
}

.features-new {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #1568c9;
}

.features-new li {
    margin-bottom: 8px;
}

.cf{
    font-size: 18px;
    font-weight: bold;
}

.add-to-cart-new {
    background-color: #1568c9;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 13px 50px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.card-new:hover .add-to-cart-new {
    color: #1568c9;
    background-color: #fff;
}

.card-new:hover .add-to-cart-new:hover {
    background-color: #ccc;
}

.flag-image {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

@media (max-width: 768px) { 
    .cards-new {
        flex-wrap: wrap;
    }

    .location-new {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        grid-gap: 10px;
    }

    .location-btn-new {
        max-width: none;
        margin: 0; 
    }

    .flag-image {
        width: 20px;
        height: 20px; 
        margin-right: 5px;
    }
}
