


.step-block-yellow {
    border-left: 3px solid #DC2626;
    border-radius: 4px;
    background: rgba(247, 247, 247, 1);
    padding: 12px;
    width: 100%;
}

.step-block-yellow .step-label {
    display: inline-block;
    border-radius: 2px;
    background: #DC2626;
    color: white;
    font-size: 12px;
    font-weight: 900;
    padding: 2px 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-block-yellow .step-text {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(34, 34, 34, 1);
    margin-bottom: 0;
}

.step-block-yellow .highlight-blue {
    color: #0ea5e9;
}


.cd-countdown-card {
    border-radius: 4px;
    background: rgba(255, 237, 237, 1);
    padding: 12px 12px 40px 12px;
    margin-top: 16px;
}

.cd-countdown-card h4 {
    border-radius: 2px;
    background: #DC2626;
    padding: 2px 6px;
    color: rgba(255, 255, 255, 1) !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 120%;
    text-align: center;
    margin: 0 auto;
    width:100% !important;
}


.availability-block {
    padding: 16px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 6.300000190734863px 0px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

.availability-places-info {
    font-size: 16px;
    margin-bottom: 0px;

    font-weight: 600;
}

.availability-places-count {
    color: #e53e3e;
    font-weight: bold;
}

.availability-description-text {
    font-size: 16px;
    line-height: 120%;

    margin-bottom: 3px !important;
}

.availability-progress-container {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.availability-progress-bar {
    height: 100%;
    background-color: #e53e3e;
    width: 0;
    border-radius: 4px;
    transition: width 0.3s ease;
}


.cta-block {
    border: 1px solid red;
    border-radius: 4px;
    background: rgba(247, 247, 247, 1);
    padding: 12px;
    width: 100%;
    text-align: center;

}

.cta-title {
    font-size: 22px;
    font-weight: 600;
    color: rgba(34, 34, 34, 1);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(34, 34, 34, 1);
    line-height: 120%;
    margin-bottom: 8px;
    padding: 0 16px 8px;
}

.cta-button {
    display: block;
    width: 100%;
    background: red;
    color: white!important;
    font-size: 18px;
    font-weight: 600!important;
    padding: 15px 20px!important;
    line-height: 120% !important;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none!important;
    margin-bottom: 8px!important;
    transition: all 0.3s ease;

    position: relative;
    overflow: hidden;
    text-align: center;
    transition: 0.3s all;
}

.okf2Z-2 .cta-button {
    color: white!important;
}


.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 999px;
    pointer-events: none;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -120%;
    width: 60%;
    height: calc(100% + 4px);
    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%
    );
    transform: skewX(-15deg);
    animation: shine 5s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
    filter: blur(0.5px);
}

.cta-button:hover::after {
    animation-play-state: paused;
}

@keyframes shine {
    0% {
        left: -120%;
    }
    40% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}


.cta-button:hover {
    background-color: #ab2929;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    color: white;
    transition: 0.3s all;
}

.testimonial-block-rep {
    border-radius: 4px;
    background: rgba(221, 42, 48, 0.1);
    padding: 12px;
    width: 100%;
    display: flex
;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 100%!important;
    border-radius: 12px;
    object-fit: cover;
    max-height: 80px;
    max-width: 80px;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 600;
    color: black;
}


@media (min-width: 700px) {
    .news-content .news-text {
        font-size: 16px !important;
    }

    .benefits-list .benefit-item {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .cd-label {
        font-size: 12px !important;
    }

    .cta-block {
        padding: 48px;
    }

}

.mobile-flex {
    display: flex;
    flex-direction: column;
}

@media (max-width: 769px) {
    .mobile-flex {
        flex-direction: column-reverse;
    }
}


.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: rgba(98, 98, 98, 1);
    line-height: 120%;
    justify-content: center;
    font-weight: 400;
}