body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f6f8;
}

.bg-gradient-primary {
    background-color: rgb(5, 39, 48);
    background-image: linear-gradient(180deg, rgb(5, 39, 48) 10%, rgb(87, 191, 165) 100%);
    background-size: cover;
    padding: 40px 20px;
    color: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-primary {
    color: rgb(5, 39, 48) !important;
}

.text-block {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgb(5, 39, 48);
    text-align: center;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.kpi {
    padding: 25px;
    background-color: rgb(240, 248, 245);
    color: rgb(5, 39, 48);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgb(87, 191, 165);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.kpi-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(5, 39, 48);
    margin-bottom: 10px;
}

.kpi-value {
    font-size: 36px;
    font-weight: bold;
    color: rgb(87, 191, 165);
    margin: 5px 0;
}

.kpi-description {
    font-size: 14px;
    color: rgb(5, 39, 48);
    margin-top: 10px;
    font-style: italic;
}
