.contact-section {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    background-color: var(--contrast-item-background);
    width: 70%;
}

.contact-details {
    width: 100%;
    padding-left: 20px;
    color: var(--text-color);
}

.contact-details p, .contact-details a {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--text-color);
}

.contact-details strong {
    font-weight: bold;
}


.contact-form {
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    height: 100px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form button:hover {
    background-color: #ffffff;
    color: black;
}


/* Find us css */

.locations-section {
    margin-top: 100px;
    background-color: #fff;
    width: 70%;
}

.locations-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000000;
    text-align: left;
}

.location {
    margin-bottom: 20px;
}

.location h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.location p {
    font-size: 14px;
    margin-bottom: 5px;
}

.location a {
    color: #000;
    text-decoration: none;
}

.location a:hover {
    text-decoration: underline;
}

.location i {
    margin-right: 5px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    height: 450px;
    background-color: #f0f0f0;
}

.map-container iframe {
    border: none;
    border-radius: 15px;
    width: 100%;
    height: 100%;
}



@media (max-width: 1200px) {
    .contact-section {
        flex-direction: column-reverse;
    }

}

@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }


    .contact-section,
    .locations-section {
        width:90%
    }

    .contact-details {
        margin-top: 30px;
        padding-left: 0px;
    }

    .locations-section {
        margin-top: 20px;
    }

    .contact-form {
        padding-left: 0px;
    }
}
