.rds-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.wpcf7-response-output {
    max-width: 500px!important;    /* 你希望的宽度 */
    margin: 24px auto 0!important;  /* 居中 */
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
}

.acceptance-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* 伪元素生成独立的顶部橙色条 */
.rds-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #e88517;
    border-radius: 24px 24px 0 0; /* 顶角圆角 */
}

.rds-form-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2b4c;
}

.rds-form-subtitle {
    text-align: center;
    font-size: 15px;
    color: #667085;
    margin-bottom: 32px;
}

.rds-form label {
    display: block !important;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a2b4c;
}

.rds-form input,
.rds-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 15px;
    color: #1a2b4c;
}

.rds-form textarea {
    min-height: 110px;
    resize: vertical;
}

.rds-submit-wrap {
    margin-top: 24px;
}

.rds-submit-wrap input[type="submit"] {
    width: 100%;
    background: #f59e0b;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(245,158,11,0.35);
}

.rds-privacy {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 16px;
    text-align: center;
}
