.course-offer-cards {
    padding: 0 40px;
}

.course-offer-cards > h1 {
    color: var(--text-color-dark);
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    letter-spacing: -1.9%;
    text-align: center;
    margin-bottom: 16px;
}

.course-offer-cards > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -1.9%;
    text-align: center;
    color: var(--text-color-dark);
    max-width: 600px;
    margin: 0 auto 100px;
}

.course-offer-cards > svg {
    display: block;
    margin: 0 auto;
    margin-bottom: 16px;
    width: 40px;
    height: 40px;
}
.course-offer-cards > svg path {
    fill: var(--icon-yellow);
}

.course-offer-cards .offers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.vip-congrats-card {
    background: linear-gradient(
        135deg,
        var(--color-brand-600, #1570ef) 0%,
        var(--color-brand-400, #53b1fd) 100%
    );
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(21, 112, 239, 0.13);
    padding: 48px 32px 40px 32px;
    max-width: 520px;
    margin: 48px auto 80px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: vipFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes vipFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.vip-congrats-card .vip-crown {
    margin-bottom: 18px;
    animation: crownPop 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes crownPop {
    0% {
        transform: scale(0.7) rotate(-10deg);
    }
    60% {
        transform: scale(1.15) rotate(8deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}
.vip-congrats-card h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.vip-congrats-card p {
    font-size: 1.18rem;
    font-weight: 400;
    margin-bottom: 32px;
    color: #eaf4ff;
}
.vip-congrats-card .vip-btn {
    display: inline-block;
    background: #fff;
    color: var(--color-brand-600, #1570ef);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 38px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(21, 112, 239, 0.1);
    transition: background 0.2s, color 0.2s;
}
.vip-congrats-card .vip-btn:hover {
    background: var(--color-brand-700, #007aff);
    color: #fff;
}

@media (max-width: 992px) {
    .course-offer-cards {
        padding: 0 44px;
    }
    .course-offer-cards > svg {
        margin-bottom: 20px;
    }
    .course-offer-cards > p {
        margin-bottom: 110px;
    }
    .course-offer-cards .offers-container {
        gap: 34px;
    }
}

@media (max-width: 576px) {
    .course-offer-cards .offers-container {
        flex-direction: column;
    }
    .course-offer-cards > h1 {
        font-size: 28px;
    }
    .course-offer-cards {
        padding: 0 24px;
    }
    .course-offer-cards > svg {
        margin-bottom: 24px;
    }
    .course-offer-cards > p {
        margin-bottom: 92px;
    }
    .course-offer-cards .offers-container {
        gap: 90px;
    }
}
