.cta-button {
    display: inline-block;
    background-color: #d0006f; /* Strong magenta */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    font-family: FS Me, Arial, sans-serif;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #00358e; /* Navy blue on hover */
}