        /* Footer styles */
	.footer_section:first-of-type {
	border-top: none;
}
        .footer_section {
            font-size:14px;
            display:flex; /* This is important for your footer layout */
            justify-content:center;
            left: 0;
            padding:10px;
            width: 100%;
            background-color: whitesmoke;
            color: #066832;
            text-align: center;
	      border-top: 1px solid rgba(0,0,0,0.05);
        }

        .links{
            display:flex;
            gap : 20px;
            font-size:12px;
            text-decoration:underline;
        }

        .logolink {
            display: flex; /* Use flexbox for alignment */
            align-items: center; /* Vertically align items */
            gap: 5px; /* Space between logo and text */
        }

        .logolink span{
            font-size:12px;
        }
	.wahablink{
   padding-top:5px;
   font-size:12px;
   text-decoration:none;
   color: #066832;
}


        .logolink img{
            width:20px;
            height:20px;
            border-radius:10px
        }

    