/* HERO */
.container {
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 12px;
  }
}
.hero-cookies-unique {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-cookies-unique .container {
  padding-top: 40px;
}

.hero-cookies-unique__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-cookies-unique__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(46, 96, 72, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 100%
  ); /* zielony gradient overlay */
}

.hero-cookies-unique__content {
  position: relative;
  max-width: 700px;
  z-index: 1;
  color: #f4f9f6;
}

.hero-cookies-unique__subtitle {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b2d8c2; /* jasna mięta */
  margin-bottom: 10px;
}

.hero-cookies-unique__title {
  font-size: 40px;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.hero-cookies-unique__text {
  font-size: 18px;
  line-height: 1.6;
  color: #eaf5ec;
}

/* POLICY */
.policy {
  padding: 80px 20px;
  background: #f4f9f6; /* jasny zielonkawy */
  color: #1b2a29;
  font-family: "Montserrat", sans-serif;
}
.policy__title {
  text-align: center;
  font-size: 32px;
  color: #2e6048; /* ciemniejsza zieleń */
  margin-bottom: 25px;
}
.policy__block a {
}
.policy__block a {
  color: #2e6048;
}
.policy__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
}
.policy__block {
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(46, 96, 72, 0.3);
}
.policy__block:last-child {
  border-bottom: none;
}
.policy__subtitle {
  font-size: 22px;
  color: #2e6048;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy__block p {
  font-size: 16px;
  line-height: 1.6;
}

/* CARDS */
.policy__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.policy__card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.policy__card:hover {
  transform: translateY(-5px);
}
.policy__card h3 {
  font-size: 18px;
  color: #3b7d57;
  margin-bottom: 10px;
}
.policy__card p {
  font-size: 15px;
  color: #333;
}

/* LINKS */
.policy__links {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.policy__links li {
  margin-bottom: 8px;
}
.policy__links a {
  color: #2e6048;
  text-decoration: underline;
}
.policy__links a:hover {
  color: #3b7d57;
}
