/* header.css */
header {
    padding: 20px 40px;
    background-color: #ECFAE5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    text-decoration: none;
  }
  
  .logo h2 {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    margin: 0;
  }
  
  .eko {
    color: rgb(41, 39, 39);
    font-weight: 700;
  }
  
  .rewolucja {
    color: #70c649;
    font-weight: 700;
  }
  
  .nav-buttons {
    display: flex;
    gap: 15px;
  }
  
  .nav-btn {
    padding: 10px 20px;
    background-color: white;
    color: #333;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-btn:hover {
    background-color: #70c649;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .burger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-buttons {
      display: none;
      flex-direction: column;
      gap: 10px;
      background-color: #ecfae5;
      padding: 10px 20px;
      position: absolute;
      top: 80px;
      right: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 999;
    }
  
    .nav-buttons.active {
      display: flex;
    }
  
    .burger {
      display: block;
    }
  
    .header-content {
      flex-wrap: nowrap;
      justify-content: space-between;
    }
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .left-side {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .nav-btn2 {
    padding: 10px 20px;
    background-color: white;
    color: #333;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-btn2:hover {
    background-color: #70c649;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  