/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 50%;
    margin: 50px auto;  /* Adds space around */
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;  /* Adjust width for mobile devices */
    }
}

/* Headings */
h1 {
    color: #333;
    margin-bottom: 10px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;  /* Adds spacing between form elements */
}

/* Inputs & Textarea */
input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button */
button {
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #0056b3;
}

/* Map Section */
.map {
    margin-top: 20px;
}

.map iframe {
    width: 80%;
    height: 300px;
    border-radius: 10px;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map iframe {
        width: 100%;  /* Full width on small screens */
        height: 250px;
    }
}
.back-button {
    position: fixed; /* Keeps it in place while scrolling */
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 16px;
    color: rgb(8, 8, 8);
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.back-button:hover {
    background-color: #030303;
    color: rgb(255, 255, 255);
}