body {
    position: relative;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding-top: 10px;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img_qbg/background-qbg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    /* background: rgba(200, 255, 200, 0.65); */
    background: rgba(235, 255, 235, 0.80);
    /* background: rgba(255, 255, 255, 0.65); */
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(4px 4px 2px rgba(0,0,0,0.5));
}

.consultation-card {
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card img {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.radius-style {
    border-radius: 10px;
}

.radius-top-style {
    border-radius: 10px 10px 0 0;
}

.consultation-card:hover img {
    transform: scale(1.005);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.whatsapp img {
    width: 25px;
    height: 25px;
    position: relative;
    bottom: 1px;
}

.whatsapp {
    display: flex;
    justify-content: space-around;
    height: 69.5px;
    border-radius: 0 0 10px 10px;
    align-items: center;
    background: linear-gradient(to left, #57983E 35%, #006A7C);
}

.whatsapp a{
    color: #fafafa;
    width: 100%;
    text-decoration: none;
    height: 62px;
    line-height: 62px;
    transition: 300ms;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.animation {
    animation: move 1.5s infinite linear;
}

@keyframes move {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.040;
    }

    100% {
        scale: 1;
    }
}

.whatsapp a:hover{
    font-size: 17px;
}

.whatsapp a:nth-child(2){
    border-left: 1px solid rgba(0,0,0,0.2);
}

.other-links {
    color: #333;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.3);
    margin: 0px auto;
    width: 100%;
}

.other-links h1 {
    font-size: 2rem;
}

.other-links hr {
    width: 30%;
    background-color: rgba(0,0,0,0.2);
}

.other-links .all-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.other-links .all-logo img {
    width: 100%;
    transition: 300ms;
}

.other-links .all-logo img:hover {
    scale: 1.050;
}

.other-links .all-logo .img-1 a img{
    width: 85%;
}

.other-links .all-logo .img-2 a img{
    width: 60%;
}

.other-links .all-logo .img-3 a img{
    width: 95%;
}

.other-links .all-logo .img-4 a img{
    width: 85%;
}

.other-links .all-logo .img-1,
.other-links .all-logo .img-2,
.other-links .all-logo .img-3,
.other-links .all-logo .img-4 {
    width: 25%;
}

@media (max-width: 768px) {
    .content {
        max-width: 90%;
        padding: 15px;
    }

    .consultation-card {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 60%;
        margin-bottom: 15px;
    }

    .other-links h1 {
        font-size: 1.3rem;
    }
    
    .other-links hr {
        width: 30%;
        margin: 15px auto;
        background-color: rgba(0,0,0,0.2);
    }

    .other-links .all-logo .img-1 a img{
        width: 95%;
    }
    
    .other-links .all-logo .img-2 a img{
        width: 60%;

    }
    
    .other-links .all-logo .img-3 a img{
        width: 100%;

    }
    
    .other-links .all-logo .img-4 a img{
        width: 100%;

    }
}