
.cta-container {
        width: 100%;
        text-align: center;
        padding: 20px;
        margin-top: 20px;
    }
    /* CTA Button */
.cta-button {
        display: inline-block;
        padding: 1rem 1rem;
        background-color: var(--bs-link-color);
        color: white !important;
        font-weight: 400;
        font-size: 1.2em;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        text-align: center;
        transition: background 0.2s ease;
        margin: auto;
        &:hover {
            background-color: var(--bs-primary);
        }
        
    }