
.container1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 40px 20px;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    gap: 40px; /* Add this line to create space between items */
}
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    /* Remove the margin-right property */
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    background-color: #222;
    color: #EDEDED;
    border-radius: 4px;
}
.contact-form textarea {
    height: 100px;
}
.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #DA0037;
    color: #EDEDED;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #ff0042;
}
.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}
h2 {
    color: #EDEDED;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        gap: 30px; /* Adjust the gap for smaller screens */
    }
    .contact-form {
        margin-bottom: 0; /* Remove the bottom margin */
        max-width: none;
    }
}