#sticky-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%); /* Initially hidden */
}



#cta-left {
    display: flex;
    flex-direction: column; /* Stack the title and content vertically */
    justify-content: center; /* Center vertically within the parent */
    align-items: flex-start; /* Align title and content to the left */
}

#cta-title {
    margin: 0 0 5px 0; /* Space between title and content */
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
}

#cta-content {
    font-size: 1rem;
    color: #555555;
}

#cta-right {
    display: flex;
    align-items: center; /* Center the button vertically */
}

#cta-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

#cta-button:hover {
    background-color: #0056b3;
}
