body{
    margin-left: 8%;
    margin-right: 8%;
}
@media (max-width: 768px) { /* Adjust the max-width value based on your target mobile screen size */
    body {
        margin-left: 2%; /* Reduced margin for smaller screens */
        margin-right: 2%;
    }  
}

.supportBox{
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);    
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: row ;
    margin: 10px;
    width: 100%;
    padding-bottom: 15px;

}

.text a{
    color: #000055;
}

.supportTitle{
    font-size: 45px;
    font-weight: bold;
    font-family: 'poppins';
    color: rgb(29, 29, 121);
}

.supportdescrip{
    font-size: 18px;
    font-weight: 500;
    color: rgb(29, 29, 121);
    text-transform: capitalize;
}
.supportMap{
    text-align: center;
    width: 100%;
    padding: 15px;
}
.supportDetails{
    width: 520px;
    padding: 15px;
}

.supportCard{
    background: #F6F8FF;
    padding: 20px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 370px;
    color: rgb(32, 32, 78);
    margin-bottom: 10px;
}
.supportCard .icon{
    max-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 9px;
    margin-right: 18px;
}
.supportCard .icon img{
    width: 100%;
}
.descripTitle{
    font-weight: 600;
    font-size: 19px;
}
.descripText .text{
    font-size: 15px;
}

.map{
    width: 600px;
    height: 380px;
    display: flex;

}
.mapBox{
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapTitle{
    font-size: 27px;
    margin-bottom: 35px;
    text-transform: capitalize;
}

@media screen and (max-width: 976px) {
    .supportBox{
        flex-direction: column;
        margin-left: 0px;
    }
    .supportDetails{
        width: 100%;
    }
    .supportCard{
        max-width: 100%;
    }

    .supportTitle{
        text-align: center;
        
    }
    .supportdescrip{
        text-align: center;
    }
}

@media screen and (max-width: 400px) {
    .supportTitle{
        font-size: 25px;
        text-align: center;
        
    }
    .supportdescrip{
        font-size: 20px;
        text-align: center;
    }
}