/* custom-cf7-style.css */
.cf7-subscription-response {
    color: #fff;
    background-color: #FF616A; /* Red background for visibility */
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;width: 90%;
    margin: 20px auto 0;
    display: none; /* Hide by default */
    font-family: "DM Sans", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}
.cf7-subscription-response.show {
    display: block; /* Show when there is a message */
}
.response-title {
    color: #393939;
    font-family: "DM Sans", Sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.1px;
    margin: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .response-title {
        font-size: 24px;
        line-height: 24px;
    }
    .cf7-subscription-response {
        font-size: 14px;
        line-height: 14px;
    }
}