.sidebar{

display:flex;

flex-direction:column;

gap:25px;

}

.sidebar-widget{

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.sidebar-widget h3{

margin-bottom:20px;

font-size:22px;

}

.sidebar-widget ul{

padding:0;

margin:0;

list-style:none;

}

.sidebar-widget li{

padding:12px 0;

border-bottom:1px solid #eee;

}

.sidebar-widget a{

text-decoration:none;

color:#222;

font-weight:600;

}

.radio-button{

width:100%;

padding:15px;

background:#d90429;

border:none;

color:#fff;

font-size:18px;

border-radius:10px;

cursor:pointer;

}

.whatsapp-button{

display:block;

padding:15px;

background:#25D366;

color:#fff;

text-align:center;

border-radius:10px;

text-decoration:none;

font-weight:bold;

}

.banner{

height:250px;

display:flex;

justify-content:center;

align-items:center;

background:#efefef;

border-radius:10px;

font-size:30px;

color:#888;

}

.sidebar{

position:sticky;

top:20px;

height:fit-content;

}

@media (max-width: 992px){

    .sidebar{

        position:static;

        top:auto;

        width:100%;

        max-width:100%;

    }

    .sidebar-widget{

        width:100%;

        max-width:100%;

        padding:20px;

    }

}