* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

/* Map Section */
.map-container {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.map-container img {
    width: 85%;
    height: 85%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.map-container img:hover {
    transform: scale(1.05);
}

/* Form Section */
.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

select, textarea {
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

select:focus, textarea:focus {
    border-color: #4e73df;
    outline: none;
    background-color: #fff;
}

textarea {
    resize: none;
    height: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

select {
    height: 40px;
}

.form-container button {
    padding: 12px 20px;
    background-color: #4e73df;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
}

.form-container button:hover {
    background-color: #3b5bdb;
}

.form-container button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container, .form-container {
        flex: none;
        width: 100%;
    }
}