.contact-content {
    position: relative;
    border-radius: 10px;
}

.contact-stepbox {
    position: relative;
    display: flex;
}

.contact-step {
    position: relative;
    width: 100%;
    padding: 8px;
    background-color: #adadad30;
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            0 100%);
    margin: 10px 5px;
    border-radius: 5px;
}

.contact-step p {
    font-size: 20px;
}

#nowstep {
    background-color: #fc8d00;
}

#nowstep p {
    color: #fff;
}

.contact-table {
    width: 100%;
    margin: 40px 0;
}

.contact-table th {
    text-align: left;
}

.contact-table td {
    width: 70%;
}

.contact-table label {
    font-size: 20px;
}

.req {
    background: #d9534f;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fafafa;
    max-width: 100%;
    min-width: 100%;
    margin: 10px 0px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2);
    outline: none;
    background: #fff;
}

.form-submit {
    text-align: center;
    margin: 30px;
}

button[type="submit"] {
    position: relative;
    background: #fc8d00;
    color: #fff;
    padding: 14px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    width: 100%;
}

button[type="submit"]:hover {
    background: #fc8d00;
    transform: translateY(-2px);
}

@media (max-width: 850px) {

    .contact-table,
    .contact-table tbody,
    .contact-table tr,
    .contact-table th,
    .contact-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

}

@media (max-width: 500px) {
    .contact-step p {
        font-size: 15px;
    }
}