.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: all 0.3s ease;
}
.payment-option:hover {
    background-color: #f8f9fa;
}
.payment-option input {
    margin-right: 10px;
}
.payment-option .credit-card {
    width: 136px;
    height: 24.727px;
}
.payment-option .paypal {
    width: 53px;
    height: 20px;
    aspect-ratio: 53/20;
}
.payment-option .stripe {
    width: 40px;
    height: 16px;
    aspect-ratio: 5/2;
}