/* =========================================
   GLOBALNE USTAWIENIA
========================================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f3f3f3 url('img/97.jpg') center center no-repeat fixed;
    background-size: cover;
    color: #222;
    line-height: 1.6;
  }
  
  a {
    color: #0051a3;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================
   NAGŁÓWEK STRONY KONTAKT
========================================= */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  /* kontener na logo + napis */
  .header-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* logo po lewej */
  .logo {
    width: 100px;
    height: auto;
    margin: 0;
  }
  
  /* napis "Kontakt" po prawej */
  .header-top h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    color: #222;
  }
  
  /* slogan pod spodem */
  header p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #333;
    text-align: center;
  }
  
  
  
  /* =========================================
     KONTAKT – GŁÓWNY UKŁAD
  ========================================= */
  .kontakt-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 20px;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  
  /* =========================================
     LEWA KOLUMNA – DANE KONTAKTOWE
  ========================================= */
  .kontakt-info {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .kontakt-info h2,
  .kontakt-info h3 {
    margin-top: 0;
    color: #0051a3;
  }
  
  .kontakt-info p {
    margin-bottom: 12px;
  }
  
  .contact-icon {
    width: 48px; /* powiększone o 20% */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
  }
  
 
  
  
  /* =========================================
     PRAWA KOLUMNA – FORMULARZ
  ========================================= */
  .kontakt-formularz {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .kontakt-formularz h2 {
    color: #0051a3;
    margin-top: 0;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input,
  textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
  }
  
  button {
    margin-top: 20px;
    padding: 12px;
    font-size: 1rem;
    background: #0051a3;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #003d7a;
  }
  
  
  /* =========================================
     SLOGAN FIRMOWY
  ========================================= */
  .slogan {
    margin: 40px auto 20px;
    max-width: 800px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000; /* czarny jak noc */
    background: rgba(255, 255, 255, 0.8); /* lekka ramka z tła */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  
  
  /* =========================================
     PRZYCISK POWROTU
  ========================================= */
  .bottom-buttons {
    text-align: center;
    padding-bottom: 40px;
  }
  
  .return-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0051a3;
    color: white;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .return-btn:hover {
    background: #003d7a;
  }
  
  
  /* =========================================
     RESPONSYWNOŚĆ (mobile)
  ========================================= */
 
  
    .qr-code {
      width: 90%; /* dopasowanie na telefonie */
      margin: 20px auto;
    }
  
    .contact-icon {
      width: 40px;
    }
  
  