.contact-form-wrap {
    background: #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin: 30px auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.cf-title {
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 12px;
    font-family: "Playfair Display", "Noto Serif TC", serif;
}

.cf-privacy {
    font-size: 14px; /* 或你要的大小，例如 13px、0.9em 也可以 */
    color: #666;     /* 可選：字體顏色稍微淡一點 */
    line-height: 1.4;
}

.cf-form input[type="text"],
.cf-form input[type="email"] {
    width: 100%;
    height: 44px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0 12px;
    box-sizing: border-box;
}
.cf-row {
    margin-bottom: 12px;
}
.cf-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cf-radio label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cf-submit {
    background-color: #2c2c2c;
    color: white;
    padding: 10px 20px;
    border: 0;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}
.cf-submit:hover {
    background-color: #000; /* 滑過更黑 */
}
.cf-submit:disabled {
    background-color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}
.cf-msg {
    margin-top: 10px;
    font-weight: bold;
}
.cf-msg--ok {
    font-size: 14px;
    color: green;
}
.cf-msg--error {
    font-size: 14px;
    color: red;
}

.contact-form-wrap {
    font-family: "Roboto", "Noto Sans TC", sans-serif;
}

.contact-form-wrap h2,
.contact-form-wrap .cf-title {
    font-family: "Playfair Display", "Noto Serif TC", serif;
}

@media (max-width: 640px) {
    .cf-cols {
        grid-template-columns: 1fr;
    }
}
