/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* Contact Section */
.contact-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

/* Store Location */
.store-info {
    margin-bottom: 30px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 10px;
}

.store-info p {
    font-size: 1.1em;
    color: #555;
}

.store-info strong {
    color: #333;
}

/* Google Map Styling */
.map-container {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    padding: 12px;
    font-size: 1.1em;
    color: white;
    background-color: #006400;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #004d00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact-form {
        width: 100%;
    }
}
