.prices .cta-action {
    color: white;
}

.prices .container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    /* padding-top: 20px; */
}
.prices .card {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    flex: 1;
}
.prices .highlight {
    border: 2px solid #23508B;
    background: #F9F8DA;
}
.prices .card img {
    max-width: 180px;
    max-height: 145px;
    margin: 10px 0;
}
.prices .card h2 {
    text-transform: uppercase;
}
.prices .price {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}
.prices .save {
    color: #ff9900;
    font-weight: bold;
}
.prices .btn {
    background: #ffd000;
    padding: 12px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 15px 0;
}

.prices .btn:hover {
    background: #f0c000;
}

.prices a {
    text-decoration: none;
    color: black;
}

.prices .guarantee {
    font-size: 14px;
    color: gray;
}
.prices .total {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
.prices .payment-icons img {
    width: 160px;
    margin: 5px;
}

@media (max-width: 900px) {
    .main > section.prices {
        margin-top: 0;
    }

    .prices .container {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .prices .card {
        max-width: 100%;
    }

    .prices .card {
        display: flex;
        gap: 20px;
    }
    .prices .card img {
        width: 120px;
    }
    .prices .price {
        font-size: 24px;
    }
    .prices .btn {
        padding: 10px;
    }
    .prices .payment-icons img {
        width: 120px;
    }
}
