body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Делаем навигацию чуть более строгой */
.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
}

/* Эффект при наведении на карточки */
.card {
    transition: transform 0.2s;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Цвета для важных блоков */
.bg-primary {
    background-color: #2c3e50 !important; /* Темно-синий, официальный цвет */
}