html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.body-inner {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    background: #555;
    padding: 60px 0;
    color: white;
}

.counter-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #e9483f;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .counter-card:hover {
        transform: translateY(-5px);
    }

.counter-icon {
    font-size: 32px;
    margin-right: 10px;
    color: #e9483f;
}

.counter-number {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #555;
}

.counter-text {
    margin: 0;
    color: #555;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    font-size: 14px;
}

.top-bar {
    padding: 0px;
    background: #e9483f;
    height: 20px;
}

.site-navigation {
    background-color: #555;
    color: white;
}

.navbar-nav .nav-link {
    color: white;
    line-height: 16px;
}

.navbar-toggler-icon {
    color: white;
}

.nav-link {
    text-transform: none !important;
}

    .nav-link.active {
        font-weight: bold;
        color: #ffc107 !important;
        border-bottom: 2px solid #ffc107;
    }

