.navbar-brand img {
    width: 120px;
    height: auto;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

:root {
    --primary-color: #0056b3;
    --secondary-color: #f8f9fa;
    --footer-color: #64c060;
    --text-color: #333;
}

header {
    background-color: var(--primary-color);
    color: white;
}

footer {
    background-color: var(--footer-color);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 14px;
}

body {
    padding-bottom: 50px;
}

section {
    margin-bottom: 40px;
}

html {
    scroll-padding-top: 80px;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #ddd;
}
