/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Kontener */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #004080;
  color: #fff;
  padding: 15px 0;
}

header .logo {
  float: left;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

header::after {
  content: "";
  display: block;
  clear: both;
}

/* Hero */
.hero {
  background: url("https://picsum.photos/1600/600?grayscale") no-repeat center center/cover;
  color: white;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero .btn {
  margin-top: 20px;
  background: #ff6600;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Sekcje */
.section {
  padding: 60px 0;
}

.section.gray {
  background: #f4f4f4;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Karty */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Jak pomóc */
.help-options {
  text-align: center;
}

.help-options .btn {
  display: inline-block;
  margin: 10px;
  background: #004080;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

/* Formularz */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #ff6600;
  border: none;
  padding: 12px;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Stopka */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsywność */
@media (max-width: 768px) {
  header .logo,
  nav {
    float: none;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
  }
}