/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f9;
}

/* Header styling */
.header {
    width: 100%;
    text-align: center;
    background-color: #4CAF50;
    color: white;
    padding: 15px 0;
    font-size: 1.5em;
}

.header h1 {
    margin: 0;
    cursor: pointer;
}

/* Main content container styling */
.content {
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

/* Button styling */
button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

/* Map container styling */
#map {
    height: 400px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form styling */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="hidden"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Success message styling */
.success-message {
    color: #4CAF50;
    font-weight: bold;
    margin-top: 20px;
}
