/*
Theme Name: WW Solutions Sections
Author: WW Solutions
Description: Motyw WordPress z ofertą na stronie głównej i osobnymi podstronami.
Version: 1.1
*/

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #000;
}

header {
  background: #000;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.offer-grid div {
  border: 2px solid #000;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  background: white;
}

footer {
  background: #111;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}
