/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* TOP BAR */
.top-bar {
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  padding: 16px 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-box img { max-height: 62px; }
.top-phone a {
  color: #2f8f3a;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

/* MENU */
.menu { background: #f7f7f7; border-bottom: 1px solid #ddd; }
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 14px 0;
}
.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.nav-menu a:hover { color: #2f8f3a; }

/* BREADCRUMBS */
.breadcrumbs {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.breadcrumbs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
}
.breadcrumbs a { color: #2f8f3a; text-decoration: none; }

/* MAIN */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
.page-header h1 {
  font-size: 34px;
  margin-bottom: 15px;
}
.page-lead {
  font-size: 18px;
  margin-bottom: 30px;
}

/* SECTIONS */
.section {
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #2f8f3a;
}
.section ul { margin-left: 20px; }

/* CONTACT BOX */
.contact-box {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 6px;
}

/* HERO IMAGE */
.hero-image {
  margin: 25px 0 35px 0;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* FLOAT IMAGE – OBLEWANIE TEKSTU */
.float-image {
  float: right;
  width: 45%;
  max-width: 480px;
  margin: 0 0 20px 25px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* FOOTER */
.global-footer {
  background: #f2f2f2;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 2px solid #ddd;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-col h3 { margin-bottom: 10px; }
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 14px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .float-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.courier-info {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.courier-info h2 {
  margin-bottom: 15px;
}

.voivodeships-list {
  margin-top: 50px;
  columns: 2;
  column-gap: 40px;
  list-style: none;
  padding-left: 0;
}

.voivodeships-list li {
  margin-bottom: 6px;
}

.voivodeships-list a {
  color: #0056b3;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 86, 179, 0.3);
  transition: 0.2s ease;
}

.voivodeships-list a:hover {
  color: #003d80;
  border-bottom-color: rgba(0, 61, 128, 0.6);
}
