.office_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #ccc;
    padding: 2rem;
    height: 95%;
    background-color: var(--white-color);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);

}

.icon i {
    height: 80px;
    width: 80px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    border-radius: 100%;
    color: var(--white-color);
}

.touch_wrapper {
    background-color: whitesmoke;
}

.office_box h3 {
    margin-top: 1rem;
    font-size: 25px;
    text-transform: capitalize;
}

.office_box p,
.office_box p a {
    margin-top: 12px;
    font-size: 18px;
    color: var(--black-color) !important;
}

.message_form {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.form-input {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

button {
    width: 100%;
}

.message_box h2 {
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
}

.message_box p {
    margin-top: 12px;
    font-size: 18px;
}
.map{
    margin-top: 1rem;
}
.map iframe{
    width: 100%;
    border-radius: 10px;
}

@media(max-width:768px) {
    .icon i {
        height: 45px;
        width: 45px;
        font-size: 25px;
    }

    .office_box h3 {
        font-size: 20px;
    }

    .office_box p,.office_box p a {
        font-size: 14px;
        display: block;
        margin-top: 5px;
    }
    .message_box p{
        font-size: 14px;
        margin-top: 5px;
    }
    .message_form{
        margin-top: 2rem;
        padding: 1.2rem;
    }
    .message_box h2{
        font-size: 25px;
    }
}