.block-call-to-action {
    background-color: #E7E7E7;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-call-to-action__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1240px;
    width: 100%;
}

.block-call-to-action__heading {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 0.9;
    color: #000000;
    text-align: center;
    margin: 0;
}

.block-call-to-action__text {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: #000000;
    text-align: center;
    margin: 0;
}

.block-call-to-action__buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.block-call-to-action__button {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    border-radius: 100px;
    padding: 12px 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.block-call-to-action__button:hover {
    opacity: 0.8;
}

.block-call-to-action__button--primary {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
}

.block-call-to-action__button--secondary {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

@media (max-width: 768px) {
    .block-call-to-action {
        padding: 60px 24px;
    }

    .block-call-to-action__heading {
        font-size: 40px;
    }

    .block-call-to-action__text {
        font-size: 18px;
    }

    .block-call-to-action__buttons {
        flex-direction: column;
        align-items: center;
    }

    .block-call-to-action__button {
        font-size: 18px;
    }
}
