/* RESET & BASE TYPOGRAPHY */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFFDF4;
  color: #264125;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.24s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
:root {
  --primary: #236C3F;
  --secondary: #A8D5A3;
  --accent: #FFFDF4;
  --brand-dark: #1A3C22;
  --brand-text: #264125;
  --shadow-lg: 0 6px 24px rgba(35,108,63,0.10);
}

/* GENERAL LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 940px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(35,108,63,0.07);
  position: relative;
}

/* TYPOGRAPHY - CREATIVE/ARTISTIC MIX */
h1,
h2,
h3 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  text-shadow: 0 2px 18px rgba(168,213,163,0.08);
  line-height: 1.12;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #1A3C22;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
  font-size: 1.09rem;
  color: #493f2f;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  color: #236C3F;
  font-size: 1.03rem;
}
ul li:before {
  content: '●';
  color: var(--secondary);
  margin-right: 10px;
  font-size: 0.98em;
  vertical-align: middle;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.38rem;
  }
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 28px;
  box-shadow: 0 4px 22px rgba(35,108,63,0.13);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.19s;
  margin-top: 16px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary);
  color: var(--brand-dark);
  box-shadow: 0 8px 38px rgba(35,108,63,0.18);
  outline: none;
}

/* HEADER + NAVIGATION */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(35,108,63,.06);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 70px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin: 0;
  list-style: none;
}
nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 18px;
  color: #1A3C22;
  transition: background 0.17s, color 0.19s;
}
nav li a:hover, nav li a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header img[alt="Brisk Shift"] {
  height: 44px;
  width: auto;
  margin-right: 25px;
}

/* MOBILE MENU - BURGER */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 24px;
  z-index: 301;
  background: var(--primary);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 12px rgba(35,108,63,.12);
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.12s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: var(--accent);
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,0,.25,1);
  box-shadow: 8px 0 22px rgba(35,108,63,.10);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: transparent;
  color: var(--primary);
  border: none;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 24px 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  transition: color 0.18s, background 0.19s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--primary);
}
@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    align-items: stretch;
    min-height: initial;
  }
  nav ul {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .btn-primary {
    display: inline-flex;
  }
}

/* MAIN LAYOUTS (MANDATORY FLEXBOX PATTERNS) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 200px;
  min-width: 220px;
  background: var(--secondary);
  border-radius: 22px 22px 32px 8px;
  box-shadow: 0 3px 14px rgba(35,108,63,0.10);
  padding: 30px 20px 26px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-left: 5px solid var(--primary);
}
.feature-grid > div:hover {
  box-shadow: 0 12px 32px rgba(35,108,63,0.15);
  transform: translateY(-2px) scale(1.018) rotate(-1deg);
}
.feature-grid img {
  width: 48px;
  margin-bottom: 6px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(35,108,63,0.07);
  position: relative;
  padding: 28px 20px;
  min-width: 200px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(35,108,63,0.14);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F6FBF5;
  border-left: 6px solid var(--primary);
  border-radius: 17px 31px 20px 10px;
  box-shadow: 0 2px 10px 0 rgba(35,108,63,0.06);
  color: #212F21;
  font-size: 1.14rem;
  transition: box-shadow 0.16s;
}
.testimonial-card strong {
  color: var(--primary); font-size: 1.08em;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px rgba(35,108,63,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 32px;
}
.benefits_highlight {
  background: var(--secondary);
  border-radius: 18px 30px 16px 26px;
  padding: 22px 24px;
  margin-bottom: 28px;
  font-size: 1.1rem;
  color: #1A3C22;
  box-shadow: 0 1px 8px rgba(35,108,63,0.07);
}
.impact_statistics {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 1.03rem;
  color: #236C3F;
  box-shadow: 0 1px 8px rgba(35,108,63,0.05);
}

/* RESPONSIVE FLEX ADJUSTMENTS */
@media (max-width: 1020px) {
  .content-wrapper {
    max-width: 98vw;
  }
  .feature-grid > div {
    min-width: 44vw;
  }
}
@media (max-width: 768px) {
  nav ul { display: none !important; }
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid > div, .card {
    min-width: 90vw;
    width: 100%;
  }
  .section {
    padding: 30px 7vw;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 18px 0px;
    border-radius: 20px;
  }
}

/* FOOTER */
footer {
  background: var(--accent);
  padding: 38px 0 22px 0;
  border-top: 2px solid var(--secondary);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1rem;
}
footer nav a {
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 10px;
  transition: background 0.14s, color 0.18s;
}
footer nav a:hover {
  background: var(--primary);
  color: #fff;
}
footer .contact-info {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  color: #264125;
  font-size: 1.01rem;
}
footer .contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer img {
  width: 28px;
  height: 28px;
}
footer p {
  color: #888;
  font-size: 0.99rem;
  margin-top: 12px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  footer .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  footer nav {
    flex-direction: column;
    font-size: 0.98rem;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #263a2f;
  color: #fff;
  z-index: 5000;
  box-shadow: 0 -2px 24px rgba(35,108,63,0.14);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 15px 22px 18px;
  justify-content: space-between;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.4s;
  font-size: 1.01rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 180px;
  font-size: 1.07rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 23px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.14s;
  cursor: pointer;
  border: none;
  margin-left: 3px;
}
.cookie-btn:hover {
  background: var(--secondary);
  color: var(--brand-dark);
}
.cookie-btn.settings {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 7px 18px 7px;
    font-size: .99rem;
  }
  .cookie-btn {
    width: 100%;
    min-width: 130px;
    padding: 10px 0;
    text-align: center;
  }
  .cookie-banner-actions {
    width: 100%;
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37,60,49,0.56);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 32px 8px 22px 8px;
  padding: 35px 34px 32px 34px;
  color: var(--brand-text);
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 8px 48px 8px rgba(35,108,63,0.20);
  position: relative;
  gap: 28px;
  animation: cookiePopIn 0.45s cubic-bezier(.4,0,.2,1);
}
@keyframes cookiePopIn {
  0% { transform: scale(0.92) translateY(40px); opacity: 0; }
  75% { transform: scale(1.06) translateY(-8px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.47rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: var(--primary);
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category .category-description {
  color: #545b46; font-size: .97rem;
}
.cookie-category.essential label {
  color: var(--primary); font-weight: 600;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 7px 18px 10px;
    min-width: 180px;
    border-radius: 21px;
  }
  .cookie-modal-close {
    top: 9px; right: 12px;
  }
}

/* INTERACTIVE MICRO-ANIMATIONS */
.card, .testimonial-card, .feature-grid > div {
  transition: box-shadow 0.19s, transform 0.18s;
}
a, .btn-primary, .cookie-btn {
  transition: color 0.21s, background 0.18s, box-shadow 0.20s;
}

/* UNIQUE CREATIVE/ARTISTIC TOUCHES */
.section {
  /* Soft hand-drawn stroke border, artistic sense (SVG or PNG bg supported) */
  border: 2px solid rgba(35,108,63,0.11);
  background: linear-gradient(140deg, #FBFBF4 70%, #A8D5A3 120%);
}
.feature-grid > div {
  /* Quasi-hand-drawn shadow for illustration */
  box-shadow: 6px 6px 0px 0px #FFFDF4, 0 2px 18px rgba(35,108,63,0.07);
  border-left: 4px dashed var(--primary);
}
.testimonial-card {
  background: linear-gradient(123deg, #fff 70%, #F6FBF5 110%);
  border-left: 6px solid var(--secondary);
}
.card {
  background: #FAFDF9;
  border-left: 4px solid var(--secondary);
}

/* ICON TINTS FOR ARTISTIC STYLE */
.feature-grid img, footer .contact-info img {
  filter: drop-shadow(0 2px 6px #A8D5A3) brightness(0.89) saturate(1.2);
}

/* CUSTOM SCROLLBAR (ARTISTIC FEEL) */
::-webkit-scrollbar {
  width: 7px;
  background: #ecf5e6;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 12px;
}

/* ACCESSIBILITY & CONTRAST ENHANCEMENTS */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #212F21 !important;
  background: none !important;
}

/* POLISH LANGUAGE SUPPORT */
body {
  font-feature-settings: "case", "liga", "calt", "locl";
}

/* END OF CSS */
