#unique-cta {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    padding: 20px;
}

#unique-cta .cta-content {
    max-width: 600px;
}

#unique-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#unique-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#unique-cta .cta-button {
    background-color: #fff;
    color: #6e8efb;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#unique-cta .cta-button:hover {
    background-color: #7785e3;
    color: #fff;
}

@media (max-width: 768px) {
    #unique-cta {
        flex-direction: column;
        /* Adjusts layout to stack elements vertically */
    }

    #unique-cta h2 {
        font-size: 2rem;
    }

    #unique-cta p {
        font-size: 1rem;
    }

    #unique-cta .cta-button {
        padding: 8px 16px;
        margin-bottom: 10px;
        /* Adds space between buttons */
    }

    #unique-cta .cta-content {
        max-width: 100%;
        /* Adjusts content width for mobile */
    }
}