.contact-section {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    background-color: #fff;
    width: 70%;
}

.contact-details {
    flex: 1;
    padding-right: 20px;
}

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

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

.view-map {
    display: block;
    margin: 20px 0;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.contact-form {
    flex: 1;
    padding-left: 20px;
}

.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;
    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;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}


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

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

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

    .contact-details {
        margin-top: 30px;
        text-align: center;
    }

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

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