#contactFormSection,
#contactFormSection * {
    box-sizing: border-box;
}

.contact-form-section {
    width: 100%;
    margin-top: 40px;
}

#contactFormSection .screen {
    display: none;
}

#contactFormSection .screen.active {
    display: block;
}

#contactFormSection .no-border {
    border: none !important;
}

#contactFormSection .form-lead {
    color: #fff !important;
    margin-bottom: 20px;
}

#contactFormSection .form-card,
#contactFormSection .confirm-card,
#contactFormSection .thanks-card {
    background: #fff;
    color: #000;
    padding: 28px;
    border-radius: 8px;
}

#contactFormSection h3 {
    color: #000;
}

#contactFormSection .form-group {
    margin-bottom: 22px;
}

#contactFormSection label {
    display: block;
    color: #000;
    font-weight: bold;
    margin-bottom: 8px;
}

#contactFormSection input,
#contactFormSection select,
#contactFormSection textarea {
    width: 100%;
    color: #000;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 6px;
    padding: 12px;
    font-size: 16px;
}

#contactFormSection textarea {
    min-height: 160px;
    resize: vertical;
}

#contactFormSection .required {
    color: #d00;
    margin-left: 8px;
}

#contactFormSection .note {
    color: #555;
    font-size: 13px;
    margin-top: 6px;
}

#contactFormSection .button-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

#contactFormSection button {
    cursor: pointer;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font-size: 15px;
}

#contactFormSection .secondary-button {
    background: #777;
}

#contactFormSection .confirm-item {
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
}

#contactFormSection .confirm-label {
    color: #000;
    font-weight: bold;
    margin-bottom: 6px;
}

#contactFormSection .confirm-value {
    color: #000;
    white-space: pre-wrap;
}

#contactFormSection .thanks-box {
    background: #f3f3f3;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
    color: #000;
    line-height: 1.8;
    text-align: center;
}

#contactFormSection .thanks-box p {
    margin: 0;
}

#contactFormSection #contactThanksName {
    font-weight: bold;
}