body,html{
    width: 100%;
    margin: 0;
}
  /* font-family: Arial, sans-serif;
    background-color: ba
    padding: 30px;
{ */

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Contact Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 150px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

button:hover {
    background-color: #0056b3;
}

/* Contact Details */
.contact-details {
    margin-top: 40px;
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

.detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.detail i {
    margin-right: 10px;
    font-size: 20px;
    color: #007bff;
}

/* Map */
.map {
    margin-top: 40px;
}