.abonnemenets-header-container {
    text-align: center;
}

.abonnemenets-header {
    text-transform: none;
    font-weight: 600;
    font-size: 40px;
}

.offers {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card {
    width: 300px;
    border-radius: 8px;
    position: relative;
}

.card-header {
    background-color: #000000;
    position: relative;
    height: 400px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.card-body {
    ul {

        padding-left: 15px;
        padding-bottom: 15px;
    }

    .underline {
        text-decoration: underline;
    }

    .button {
        margin-top: 15px;
        display: flex;
        padding: 10px 15px;
        background-color: #d3b14a;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        color: white;
        font-size: 18px;

        div {
            width: 40px;
            padding-top: 15px;
        }
    }
}

.card-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    .name {
        font-size: 40px;
    }

    .additional {
        font-size: 12px;
        display: block;
    }
}

.logo {
    width: 40px;
    height: auto;
    margin-bottom: 10px;
}

.card h2 {
    margin-top: 0;
}

.price {
    font-size: 24px;
    margin: 10px 0;
}

.description {
    text-align: left;
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
}

.description a {
    color: #add8e6;
    text-decoration: underline;
}

.errors-message {
    color: red;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}

.checkout-header {
    text-align: center;
    font-size: 40px;
}

.checkout-header.success {
    color: green;
}

.checkout-header.cancel {
    color: red;
}