/* === Sekcja: Funkcjonalności systemu === */
.system-features-section {
    background-color: #f8f9fa;
}

.system-features-section h2 {
    font-size: 2rem;
    color: var(--brand-dark);
}

/* Boxy */
.feature-item {
    border: 1px solid rgba(18, 39, 56, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 102, 45, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Ikony */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(17, 102, 45, 0.1);
    color: var(--brand-primary);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--brand-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Teksty */
.feature-item h6 {
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsywność */
@media (max-width: 767.98px) {
    .system-features-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .feature-item {
        padding: 1.5rem;
    }
}
