.map {
    font-family: Arial, sans-serif;
    text-align: center;
}

.map h2 {
    margin: 70px 0;
    font-size: 3rem;
}

.partner-logos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 70px;
}

.partner-logo {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    cursor: pointer;
}

.modal-partner {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-partner {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-description-partner {
    margin: auto;
    display: block;
    width: 80%;
    height: 60%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.close-partner {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-partner:hover,
.close-partner:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
#map {
    width: 100%;
    height: 80vh;
}
.marker {
    background-image: url('../immmmage/location.png');
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.label {
    color: black;
    background-color: white;
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    text-align: center;
}
.info-box {
    position: absolute;
    top: 940px;
    right: 60px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}
.contact-section {
    padding: 70px;
    /* max-width: 800px; */
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #393939;
    border-radius: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    flex: 1 1 calc(33.333% - 20px);
}

.contact-form textarea {
    flex: 1 1 100%;
    resize: none;
    height: 100px;
}

.contact-form .full-width {
    flex: 1 1 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.submit-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: #0056b3;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 100%;
}

.privacy-link {
    color: #007BFF;
    text-decoration: none;
}