.my-cta-button {
    background-color: #ff4848; /* Your brand red */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    //display: inline-block;
    text-align: center; /* This centers any inline-block children */
}

.my-cta-button:hover {
    background-color: #cc3a3a; /* Darker shade for hover effect */
}