@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #F6F9FF;
    overflow-x: hidden; /* Prevents horizontal scroll on mobile */
}

/* Utility */
.bg-white {
    background-color: #ffffff;
}

.custom-shadow {
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(1, 41, 112, .1);
}

.sidebar-list a {
    font-size: 15px !important;
}

li.list-group-item.d-flex.justify-content-between.align-items-center {
    font-size: 13px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Wrap content on smaller screens */
    padding: 0 20px;
}

.footer-icons {
    font-size: 24px;
    margin-right: 10px;
}

.footer-icons a {
    color: #fff;
    margin-right: 10px;
}

.footer-about {
    flex: 1;
    max-width: 60%;
    min-width: 200px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-about {
        max-width: 100%;
        margin-top: 20px;
    }

    .sidebar-list a {
        font-size: 14px !important;
    }

    li.list-group-item.d-flex.justify-content-between.align-items-center {
        font-size: 12px;
    }

    body {
        font-size: 15px;
    }
}
