.responsive-button {
    display: inline-block;
    background-color: #CB1219;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-align: center;
    white-space: normal;
    max-width: 100%;
    word-break: break-word;
    font-size: 1.6rem;
    line-height: 1.4;
    text-decoration: none;
}

.responsive-button:hover {
    background-color: #FF0000;
    color: #FFFFFF;
    text-decoration: none;
}

.contact-button-wrapper {
    text-align: center;
}

@media (max-width: 576px) {
    .responsive-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}
