.contact-page {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.contact-page-box {
    width: 100%;
    max-width: calc(25% - 10px); /* For 4 columns with a 10px gap */
    height: 200px;
    border: 1px solid rgb(145, 140, 140);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;   
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
}

.text-white{
    z-index: 10;
    position: relative;
}

.contact-form-page{
    padding: 14px;
    min-height: 100%;
    background: #f0f0f0;
    .right-header{
        background: transparent;
        .phone-input input[type="tel"]{
            width: calc(100% - 60px);
        }
    }
}

.contact-form-right{
    display: grid;
    grid-template-rows: auto 1fr;
}

.contact-page-icon {
    border: 1px solid rgb(145, 140, 140);
    padding: 10px;
    border-radius: 6px;
}

.contact-page-details h6 {
    font-weight: 700;
}

.contact-page-details p {
    line-height: 2;
}

.contact-page-details a {
    color: black;
    font-family: "Montserrat";
    font-weight: 500;
    text-decoration-color: black;
}
.font-medium-size{
    font-size: 14px;
}
@media (max-width: 900px) {
    .contact-page-box {
        max-width: calc(50% - 10px); 
    }
}

@media (max-width: 480px) {
    .contact-page-box {
        max-width: 100%; 
    }

    .contact-map{
        min-height: 400px;
    }

    .contact-form-right{
        margin-top: 24px;
    }
}

.team-pic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}