.bg-back {
    background-color: #f9f9f9;
    background-image: url(../img/back.webp);
    padding-bottom: 50px;
}
.content-box {
    max-width: 1000px;
    min-height: 600px;
    border-radius: 12px;
    padding: 2rem;
    margin: auto;
    text-align: justify;
}

.content-box h1 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    margin-top: 25px;
    color: #000;
    text-align: center;
}

.content-box p {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 25px;
}

.highlight {
    /* color: #f07301; */
    font-weight: bold;
}

.info-block {
    width: 400px;
    margin: auto;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.info-block p {
    margin: 0.5rem 0;
}

.hero-image {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero-image figcaption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}

.hero-image2 figcaption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}

.hero-image2 {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-image2 img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}


.hero-image2 figcaption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}




#linia1 {
    font-family: Roboto;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.66;

    padding-top: 50px;
    background-color: #fff;
    position: relative;
    text-align: center;
    border-top: 2px solid #e0e0e0;
}

.divider {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.circle-logo {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: #111;
  text-align: center;
}

.circle-logo img {
	width: 60px;
}

.grid3and2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.grid3and2-item {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.grid3and2-item img {
	height: 100px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.grid3and2-item p {
  font-size: 1rem;
}



.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 21px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: green;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.2;
}

.sublist {
  padding-left: 20px;
}



.info-table {
  max-width: 600px;
  margin: 40px auto;
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8200;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.info-text {
  flex: 1;
  font-size: 16px;
  color: #333;
}

.info-label {
  font-weight: bold;
}

.info-value {
  display: block;
  margin-top: 4px;
  color: #222;
}