#left-content a.cta-button {
    display: inline-block;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8a573a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

#left-content a.cta-button:hover {
    background-color: #6d393a; /* Slightly darker on hover */
    transform: translateY(2px);
}

#left-content a.cta-button:active {
    transform: translateY(0);
}

#left-content a.cta-button.center {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
}


/* Mobile responsive */
@media (max-width: 768px) {
    #left-content a.cta-button {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}