.ndebele-cta-grid-fbb45e03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.ndebele-cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border-radius: 16px;
    height: 100%;
}

.ndebele-cta-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.ndebele-cta-content p {
    margin: 0 0 24px 0;
    line-height: 1.6;
    font-size: 16px;
    opacity: 0.9;
}

.ndebele-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.ndebele-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 767px) {
    .ndebele-cta-grid-fbb45e03 {
        grid-template-columns: 1fr;
    }
}