/* === CSS RESET & NORMALIZE === */
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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F9F9F6;
  color: #18424C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
a {
  color: #276255;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #43887A;
  outline: none;
}
ul, ol {
  list-style-type: none;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #18424C;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
section {
  width: 100%;
}

/* === CONTAINERS === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* === SPACING AND LAYOUT === */
.section, .about-section, .services, .features, .testimonials, .faq, .project-overview, .blog-posts, .privacy-policy, .rodo-info, .terms-conditions, .cookies-policy, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(67, 136, 122, 0.10);
}
@media (max-width: 700px) {
  .section, .about-section, .services, .features, .testimonials, .faq, .project-overview, .blog-posts, .privacy-policy, .rodo-info, .terms-conditions, .cookies-policy, .thank-you {
    margin-bottom: 40px;
    padding: 28px 8px;
    border-radius: 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(67, 136, 122, 0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #FFF6EB;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24,66,76,0.07);
  margin-bottom: 24px;
  color: #18424C;
  max-width: 650px;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #18424C;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  color: #43887A;
  font-weight: 600;
  letter-spacing: 0;
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 18px 14px;
    font-size: 1rem;
    margin-bottom: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === NAVIGATION === */
header {
  background: #FFFFFF;
  width: 100%;
  box-shadow: 0 4px 16px rgba(24,66,76,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 20px;
  min-height: 70px;
}
.main-nav img {
  height: 44px;
  width: auto;
  margin-right: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #18424C;
  border-radius: 14px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F1E9E6;
  color: #276255;
}
@media (max-width: 960px) {
  .main-nav {
    gap: 12px;
    padding: 0 10px;
  }
  .main-nav img {
    height: 40px;
    margin-right: 10px;
  }
}
@media (max-width: 820px) {
  .main-nav a {
    font-size: 0.97rem;
    padding: 7px 10px;
  }
  .main-nav {
    min-height: 58px;
    gap: 4px;
  }
}
@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  background: #FFF6EB;
  border: none;
  border-radius: 12px;
  padding: 7px 18px;
  color: #18424C;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.22s;
  z-index: 1102;
  box-shadow: 0 2px 8px rgba(67,136,122,0.09);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FBE6D2;
}
@media (max-width: 700px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F9F6;
  box-shadow: 0 4px 32px rgba(24,66,76,0.08);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: #FFF6EB;
  border: none;
  border-radius: 13px;
  color: #18424C;
  padding: 6px 14px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FBE6D2;
}
.mobile-nav {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  padding: 11px 0px;
  color: #18424C;
  border-radius: 12px;
  transition: background 0.19s, color 0.18s;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1E9E6;
  color: #276255;
}
@media (min-width: 701px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 340px;
  background: linear-gradient(90deg,#FFF6EB 0%, #FBE6D2 100%);
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(67,136,122,0.10);
  margin-bottom: 60px;
  padding: 48px 22px 44px 22px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #18424C;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  color: #276255;
  margin-bottom: 22px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.09rem;
  border-radius: 22px;
  background: #43887A;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  border: none;
  box-shadow: 0 3px 14px rgba(67,136,122,0.13);
  transition: background 0.24s, box-shadow 0.19s, transform 0.16s;
  cursor: pointer;
  margin-top: 6px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #276255;
  transform: translateY(-2px) scale(1.04);
  color: #FFF6EB;
}
@media (max-width: 640px) {
  .hero {
    padding: 28px 6px 20px 6px;
    border-radius: 12px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .container {
    padding: 0 7px;
  }
}

/* === FEATURES (WHY US, BENEFITS, ETC.) === */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #FFF6EB;
  border-radius: 15px;
  box-shadow: 0 3px 13px rgba(67,136,122,0.09);
  padding: 22px 18px 16px 18px;
  font-size: 1rem;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 260px;
}
.features ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.features ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #18424C;
  margin-bottom: 2px;
}
@media (max-width: 900px) {
  .features ul {
    gap: 16px;
  }
  .features ul li {
    padding: 17px 10px 11px 10px;
  }
}
@media (max-width: 650px) {
  .features ul {
    flex-direction: column;
    gap: 12px;
  }
  .features ul li {
    min-width: unset;
    max-width: unset;
    border-radius: 11px;
  }
}

/* === SERVICES CARDS === */
.services .service-card, .about-section .service-card {
  background: #FFFFFF;
  border: 1.5px solid #FBE6D2;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(24,66,76,0.07);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  transition: border 0.21s, box-shadow 0.19s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.services .service-card:hover, .about-section .service-card:hover {
  border: 1.5px solid #43887A;
  box-shadow: 0 7px 30px rgba(67,136,122,0.17);
  transform: translateY(-2px) scale(1.02);
}
.services .service-card h3 {
  margin-bottom: 2px;
  font-size: 1.19rem;
  color: #18424C;
  font-family: 'Montserrat', Arial, sans-serif;
}
.services .service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  color: #276255;
  margin-top: 10px;
}
.services .text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .services .text-section {
    flex-direction: column;
    gap: 12px;
  }
}

/* === LISTS AND FAQ === */
.faq-list, .blog-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 26px;
}
.faq-list div, .blog-list article {
  background: #FFF6EB;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(67,136,122, 0.08);
  padding: 20px 18px 16px 18px;
}
.faq-list h2, .blog-list h2 {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.faq-list p, .blog-list p {
  font-size: 1.02rem;
}
.popular-topics-list {
  margin-top: 20px;
  background: #FBE6D2;
  border-radius: 12px;
  padding: 18px;
  font-size: .98rem;
}
.popular-topics-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.popular-topics-list li {
  background: #FFF6EB;
  border-radius: 8px;
  padding: 5px 13px;
  color: #18424C;
}

/* === PROJECT LIST / REALIZACJE === */
.project-overview ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 10px;
}
.project-overview ul li {
  background: #FFF6EB;
  border-radius: 16px;
  box-shadow: 0 3px 17px rgba(67,136,122,0.07);
  padding: 18px 20px;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
.project-overview ul li strong {
  color: #276255;
  font-weight: 700;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.project-overview ul li .category {
  background: #276255;
  color: #fff;
  font-size: .89rem;
  border-radius: 8px;
  margin-left: 12px;
  padding: 2px 12px 2px 10px;
  font-weight: 500;
  vertical-align: middle;
}

/* === BLOG LIST === */
.blog-list article {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(67,136,122,0.08);
  transition: box-shadow 0.18s, transform 0.16s;
}
.blog-list article:hover {
  box-shadow: 0 9px 33px rgba(67,136,122,0.13);
  transform: translateY(-1px) scale(1.01);
}
.blog-list article a {
  display: inline-block;
  margin-top: 3px;
  color: #276255;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1.5px solid #43887A;
  padding-bottom: 1px;
  transition: color 0.17s, border 0.18s;
}
.blog-list article a:hover, .blog-list article a:focus {
  color: #18424C;
  border-bottom: 1.5px solid #18424C;
}

/* === CHALLENGE SOLUTION - REALIZACJE === */
.challenge-solution {
  background: #FBE6D2;
  border-radius: 15px;
  box-shadow: 0 2px 7px rgba(24,66,76,0.04);
  padding: 18px 20px;
  margin-bottom: 22px;
}
.challenge-solution h3 {
  font-size: 1.13rem;
  color: #27424C;
  margin-bottom: 7px;
}
.challenge-solution strong {
  font-weight: 700;
  color: #276255;
}

/* === EXPERIENCE HIGHLIGHTS === */
.experience-highlights {
  background: #FFF6EB;
  border-radius: 13px;
  padding: 15px 17px;
  font-size: 1rem;
}

/* === FOOTER === */
footer {
  background: #FFEFE2;
  padding: 32px 0;
  margin-top: 22px;
  box-shadow: 0 -2px 30px rgba(24,66,76,0.05);
  border-radius: 20px 20px 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 17px;
  justify-content: center;
}
.footer-nav a {
  color: #18424C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 5px 13px;
  transition: background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FBE6D2;
  color: #276255;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 44px;
  margin-bottom: 18px;
  justify-content: center;
}
.brand-address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.brand-address img {
  width: 55px;
  height: 55px;
  margin-bottom: 4px;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  font-size: .95rem;
}
.legal-links a {
  color: #43887A;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 3px 7px;
  transition: background 0.14s, color 0.15s;
}
.legal-links a:hover, .legal-links a:focus {
  background: #FFF6EB;
  color: #18424C;
}
@media (max-width: 700px) {
  .footer-info {
    flex-direction: column;
    gap: 11px;
    text-align: center;
  }
  footer {
    padding: 19px 0 24px 0;
    border-radius: 10px 10px 0 0;
  }
}

/* === THANK YOU PAGE === */
.thank-you .cta-btn {
  margin-top: 22px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF6EB;
  border-top: 2px solid #FBE6D2;
  box-shadow: 0 -4px 24px rgba(67,136,122,0.11);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  padding: 18px 32px 18px 22px;
  font-size: 1rem;
  transition: transform .38s cubic-bezier(.7,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner p {
  flex: 1 1 60%;
  color: #18424C;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  appearance: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 19px;
  border-radius: 13px;
  border: none;
  margin: 0;
  margin-left: 0;
  cursor: pointer;
  background: #43887A;
  color: #fff;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s, transform 0.13s;
  box-shadow: 0 1px 6px rgba(67, 136, 122, 0.07);
}
.cookie-banner button:nth-child(2) {
  background: #FFEFE2;
  color: #18424C;
  border: 1.3px solid #E1D4C7;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #276255;
  color: #FFF6EB;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner button:nth-child(2):hover, .cookie-banner button:nth-child(2):focus {
  background: #FBE6D2;
  color: #276255;
}
@media (max-width: 980px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 17px 12px 17px 12px;
  }
}
@media (max-width: 480px) {
  .cookie-banner p {
    font-size: .95rem;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,66,76, 0.18);
  z-index: 3000;
  transition: opacity .27s;
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, +80px) scale(0.97);
  min-width: 320px;
  max-width: 96vw;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 7px 32px rgba(67,136,122,0.17);
  padding: 36px 32px 34px 32px;
  z-index: 3100;
  transition: all .33s cubic-bezier(.77,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  margin-bottom: 19px;
  font-size: 1.25rem;
  color: #18424C;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 24px;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #18424C;
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #43887A;
  width: 19px;
  height: 19px;
  border-radius: 5px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 19px;
  border-radius: 13px;
  border: none;
  background: #43887A;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.13s;
}
.cookie-modal button.cancel {
  background: #FBE6D2;
  color: #18424C;
  border: 1.2px solid #E1D4C7;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #276255;
  color: #FFF6EB;
  transform: translateY(-2px) scale(1.04);
}
.cookie-modal button.cancel:hover, .cookie-modal button.cancel:focus {
  background: #FFF6EB;
  color: #276255;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    padding: 16px 9px 22px 9px;
    border-radius: 12px;
  }
  .cookie-modal h2 {
    font-size: 1.08rem;
  }
}

/* === UTILITIES & MICRO-INTERACTIONS === */
::-webkit-scrollbar { width: 8px; background: #FFEFE2; }
::-webkit-scrollbar-thumb {
  background: #FBE6D2;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover { background: #43887A; }
button, .cta-btn, a {
  outline: none;
}
:focus-visible {
  outline: 2px dashed #43887A !important;
  outline-offset: 1px;
}

/* === TYPOGRAPHY HIERARCHY === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul {
  margin-top: 7px;
}
.text-section li {
  list-style-type: disc;
  margin-left: 19px;
  margin-bottom: 7px;
}
.text-section h2 {
  margin-top: 24px;
  margin-bottom: 9px;
}

/* === MISCELLANEOUS CLASSES FOR BRAND IDENTITY === */
.price {
  font-size: 1.03rem;
  color: #276255;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #FFEFE2;
  border-radius: 8px;
  padding: 3px 8px;
  display: inline-block;
  margin-top: 11px;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 500px) {
  h1 {font-size: 1.3rem;}
  h2 {font-size: 1.07rem;}
  .price {font-size: .92rem;}
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero, .section, .card, .service-card, .testimonial-card, .feature-item,
.challenge-solution, .blog-list article, .faq-list div, .project-overview ul li {
  animation: fadeInUp .7s cubic-bezier(.77,0,.18,1.05) backwards;
}

/* === END OF STYLE.CSS === */