body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 30px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.status,
.form-section,
.contacts {
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
}

input,
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin-bottom: 12px;
}

textarea {
    height: 100px;
}

button {
    padding: 10px 18px;
    cursor: pointer;
    margin: 5px;
}

.success {
    background: #dff5df;
    padding: 15px;
    margin-top: 15px;
}

.error {
    background: #ffdede;
    padding: 15px;
    margin-top: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background: #eee;
}