.hs-main-container{
    width: 100%;
    background-color: #F3F3F3;
    display: flex;
    justify-content: center;
}
.hs-sub-container{
    background-color: #FFFF;
    width: 68%;
}
.hs-support-container{
    padding: 3.19rem 2.13rem;
}
.support-heading{
    color: #000;
    font-family: Poppins;
    font-size: 2.1875rem;
    font-weight: 500;
}
.support-description{
    margin-top: 2.56rem;
    margin-bottom: 2.75rem;
    color: #000;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.9375rem;
}
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1rem; 
    max-width: 100%;
    height: 100%; 
}
.general-card{
    display: flex;
    border: 0.739px solid #CBCBCB;
    background: #F5FCFF;
    padding: 1.79rem 1.39rem;
    gap: 1.43rem;
    height: 100%;

}
.general-card-text{
    display: flex;
    flex-direction: column;
    gap: 0.81rem;
}
.general-card-text span{
    display: inline-block;
    overflow-wrap: anywhere;
    max-width: 100%;
    white-space: wrap;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
}

.general-card-text :first-child{
    font-weight: 300;
}
.address-card{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.56rem;
}
.addess-card-img{
    height: 100%;
}
.addess-card-img img{
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 1600px) and (min-width: 768px) {
    .hs-sub-container{
        width: 80%;
    }
}

@media only screen and (max-width: 768px) and (min-width: 576px) {
    .hs-sub-container{
        background-color: #FFFF;
        width: 80%;
    }
}

@media only screen and (max-width: 576px) {
    .hs-sub-container{
        background-color: #FFFF;
        width: 100%;
    }
    .support-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    }
}