/* uslugi.css – nowoczesny, efektywny design */

/* Definicje zmiennych dla spójnej kolorystyki */
:root {
    --primary-color: #bfc2cd;       /* Dominujący ciemny odcień */
    --secondary-color: #191c1e;     /* Jasny, kontrastowy background */
    --accent-color: #ffc107;        /* Akcentowy żółty/nastrojowy */
    --text-color: #c2e4ee;             /* Standardowy kolor tekstu */
    --transition-speed: 0.3s;
  }
  
  .services {
    background-color: var(--secondary-color);
    padding: 60px 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
  }
  
  .services h2::after {
    content: '';
    width: 50%;
    height: 4px;
    background: var(--accent-color);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .services li {
    background-color: #2c3e50;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    text-align: left;
  }
  
  .services li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  .services li strong {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .services li p {
    margin-top: 10px;
    color: var(--text-color);
    line-height: 1.5;
  }
  
  /* Responsywność – optymalizacja dla mniejszych ekranów */
  @media (max-width: 768px) {
    .services {
      padding: 40px 10px;
    }
    
    .services h2 {
      font-size: 2rem;
    }
    
    .services ul {
      grid-template-columns: 1fr;
    }
  }
  