/* Ustawienie logo i tekstu w jednej linii */
..header-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  justify-content: center;
  background-color: #272e30; /* <-- DODANE TŁO */
  padding: 0; /* lub 20px, jeśli chcesz marginesy wokół .header-content */
}



/* Logo – można dostosować rozmiar */
.logo {
  width: 200px;
  height: auto;
}

/* Treść obok logo */
.text-content h1 {
  margin: 0;
  font-size: 2rem;
}

.text-content p {
  margin: 5px 0 15px 0;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #272e30;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

/* Ogólne style strony */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #f7f9fc;
  line-height: 1.6;
}

header {
  background: #272e30;
  color: white;
  padding: 20px; /* zmniejszone z 60px */
  /* usunięto text-align: center; */
}

/* Style dla nagłówka h1 i p wewnątrz .text-content */
header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

header p {
  font-size: 20px;
}

nav {
  background: white;
  border-bottom: 1px solid #ccc;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  color: #007BFF;
  padding: 10px 15px;
}

nav a:hover {
  background: #e6f0ff;
  border-radius: 5px;
}

.section {
  padding: 60px 20px;
}

.alt {
  background: #e9f3ff;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.services li {
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

blockquote {
  background: white;
  padding: 20px;
  margin: 20px 0;
  border-left: 5px solid #007BFF;
  font-style: italic;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form button {
  background: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #005bb5;
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
