/* Globalne ustawienia */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5fafd; /* Jasny, basenowy niebieski */
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Nagłówek */
  .header {
    background-color: #009fe3; /* Intensywny niebieski */
    color: white;
    text-align: center;
    padding: 40px 20px;
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .header p {
    font-size: 1.2rem;
  }
  
  /* Sekcja Q&A */
  .q-and-a {
    background-color: white;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .q-and-a h2 {
    text-align: center;
    color: #009fe3;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .qa-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
  }
  
  .qa-item h3 {
    color: #009fe3;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .qa-item p {
    font-size: 1rem;
    color: #555;
  }
  
  .qa-item a {
    color: #009fe3;
    text-decoration: none;
  }
  
  .qa-item a:hover {
    text-decoration: underline;
  }
  
  /* Stopka */
  .footer {
    background-color: #009fe3;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
  }
  
  .footer p {
    font-size: 0.9rem;
    margin: 0;
  }
  .logo{
    text-align: left;
    width: 200px;
    height: 200px;
  }
  #zdjecie_logo{
    width: 200px;
    height: 200px;
  }
  .qa-item ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
  }
  
  .qa-item ul li {
    margin-bottom: 5px;
  }
  
  
  .qa-item ul li::marker {
    color: #009fe3; /
  }
  .back-home-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
  