.elementor-202 .elementor-element.elementor-element-9eb068c{--display:flex;}.elementor-202 .elementor-element.elementor-element-f0aec46{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5d65928 */body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    margin: 20px;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-content {
    display: flex;
    gap: 20px;
}

.left-section, .right-section {
    flex: 1;
}

.left-section {
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.right-section {
    padding-left: 20px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.time-slot.active {
    background: #007bff;
    color: #fff;
}

.agreement {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.agreement input[type="checkbox"] {
    margin-right: 10px;
}

.agreement label {
    font-size: 14px;
}

.agreement a {
    color: #007bff;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555;
}/* End custom CSS */