/* =========================
   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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #224E36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
}
img, svg {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #224E36;
  text-decoration: none;
  transition: color 0.2s, background 0.3s;
}
a:focus {
  outline: 2px dashed #E9B96E;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 16px;
  padding-left: 1.5em;
}
:focus {
  outline: none;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: box-shadow 0.2s;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
strong {
  font-weight: 700;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.text-section {
  margin-bottom: 24px;
}

/* =========================
   CONTAINER & SECTION
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
main {
  margin-bottom: 80px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 8px 0 rgba(34,78,54,0.06);
}
.content-wrapper {
  gap: 20px;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #224E36;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 10px rgba(34, 78, 54, 0.10);
  position: relative;
  z-index: 18;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 20px 20px 20px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E9B96E;
  color: #224E36;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  padding: 12px 28px;
  border: none;
  border-radius: 40px;
  background: #E9B96E;
  color: #224E36;
  box-shadow: 0 2px 8px 0 rgba(34,78,54,0.13);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.12s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #224E36;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(34, 78, 54, 0.16);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: #E9B96E;
  color: #224E36;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(34, 78, 54, 0.12);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover {
  background: #fff;
  color: #224E36;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #224E36;
  color: #fff;
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.61,0.01,0.71,1);
  opacity: 0.99;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 30px;
  background: #E9B96E;
  color: #224E36;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 14px 0 rgba(34, 78, 54, 0.17);
  border: none;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover {
  background: #fff;
  color: #224E36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 100px 0 0 0;
}
.mobile-nav a {
  display: block;
  width: 100vw;
  max-width: 350px;
  padding: 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  background: transparent;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E9B96E;
  color: #224E36;
}

/* Only visible on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   HERO / CTA SECTIONS
   ========================= */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

section .container {
  position: relative;
}

.section--dark {
  background: #224E36;
  color: #fff;
}

/* ========== FEATURES ========== */
.features-grid, .content-wrapper.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 16px;
  color: #224E36;
  box-shadow: 0 1px 8px 0 rgba(34,78,54,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 220px;
  padding: 32px 24px 28px;
  margin-bottom: 20px;
  border-left: 7px solid #E9B96E;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.feature:hover {
  box-shadow: 0 6px 24px 0 rgba(34, 78, 54, 0.13);
  border-left-color: #224E36;
}

/* ========== SERVICES CARDS (/) ========== */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: space-between;
}
.service-card {
  background: #224E36;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,78,54,0.14);
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 250px;
  max-width: 295px;
  margin-bottom: 20px;
  gap: 14px;
  transition: box-shadow 0.16s, background 0.15s;
}
.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.service-card .price {
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: #fff;
  color: #224E36;
  border-radius: 10px;
  padding: 7px 16px;
  font-size: 1.02rem;
}
.service-card:hover {
  background: #1c3f2c;
  box-shadow: 0 8px 28px 0 rgba(34, 78, 54, 0.18);
}

/* ========== SERVICES LIST ITEMS (uslugi.html) ========== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.service-list-item {
  background: #F6F8F7;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(34,78,54,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 350px;
  padding: 32px 24px 26px;
  margin-bottom: 20px;
  border-left: 7px solid #224E36;
  transition: box-shadow 0.13s, border-color 0.18s;
}
.service-list-item img {
  width: 44px;
  height: 44px;
}
.service-list-item .price {
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: #224E36;
  color: #fff;
  border-radius: 9px;
  padding: 6px 14px;
  font-size: 1rem;
}
.service-list-item:hover {
  box-shadow: 0 7px 24px 0 rgba(34, 78, 54, 0.12);
  border-left-color: #E9B96E;
}

/* ========== CONTACT DETAILS ========== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info, .map-address {
  flex: 1 1 280px;
  min-width: 225px;
}

/* =========================
   CARDS & CONTENT GRIDS    
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,78,54,0.07);
  padding: 24px 20px 22px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials-slider, .testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  justify-content: left;
}
.testimonial-card {
  background: #F6F8F7;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(34,78,54,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 30px 20px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.14s;
  color: #224E36;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #224E36;
  margin-top: 6px;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #224E36;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(34, 78, 54, 0.14);
}
.rating-summary {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #E9B96E;
  background: #224E36;
  padding: 9px 18px;
  border-radius: 11px;
  display: inline-block;
}

/* =========================
   FAQ & LISTS
   ========================= */
.faq-summary ul, .service-comparison ul, .about-values, .tips-list ul, .legal-content ul {
  padding-left: 1.1em;
  margin-bottom: 0;
  color: #224E36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.faq-summary li, .service-comparison li, .about-values li, .tips-list li, .legal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}
.faq-summary strong {
  color: #224E36;
}
.service-comparison {
  margin-top: 28px;
  background: #FFF8EE;
  border-radius: 10px;
  padding: 18px 16px 12px 22px;
}

/* =========================
   BLOG CARDS
   ========================= */
.blog-article-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  justify-content: flex-start;
}
.blog-article-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,78,54,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px 22px 32px 18px;
  margin-bottom: 20px;
  max-width: 315px;
  transition: box-shadow 0.16s, background 0.14s;
  border-left: 7px solid #E9B96E;
}
.blog-article-card h2 {
  font-size: 1.22rem;
}
.blog-article-card a {
  margin-top: 10px;
  color: #224E36;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.13s;
}
.blog-article-card a:hover {
  color: #E9B96E;
}
.blog-article-card:hover {
  box-shadow: 0 8px 24px 0 rgba(34, 78, 54, 0.13);
  background: #FAF4EA;
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.categories-filter strong {
  margin-right: 9px;
  font-size: 1.08rem;
}
.categories-filter a {
  background: #F2F5F2;
  color: #224E36;
  border-radius: 7px;
  padding: 6px 17px;
  font-size: 0.99rem;
  font-weight: 700;
  transition: background 0.12s, color 0.18s;
}
.categories-filter a:hover {
  background: #224E36;
  color: #fff;
}

/* =========================
   QUICK ADVICE CARDS (porady)
   ========================= */
.quick-advice-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 25px 0;
}
.advice-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(34,78,54,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 22px 22px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 280px;
  border-left: 6px solid #E9B96E;
  transition: box-shadow 0.13s, border-color 0.17s;
}
.advice-card:hover {
  box-shadow: 0 6px 20px 0 rgba(34, 78, 54, 0.13);
  border-left-color: #224E36;
}

/* =========================
   PRICING TABLE (cennik.html)
   ========================= */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}
.pricing-table th {
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #224E36;
  color: #fff;
  padding: 14px 12px;
  font-size: 1.1rem;
  font-weight: 700;
}
.pricing-table td {
  padding: 13px 12px;
  color: #224E36;
  font-size: 1rem;
  border-bottom: 1px solid #E5ECDE;
}
.pricing-table tr:nth-child(even) {
  background: #FAF4EA;
}

/* =========================
   LEGAL (privacy, rodo, cookies...)
   ========================= */
.legal-content {
  background: #F6F8F7;
  padding: 30px 20px 28px 20px;
  border-radius: 17px;
  box-shadow: 0 1px 8px 0 rgba(34,78,54,0.06);
  font-size: 1.05rem;
  margin-top: 18px;
}

/* =========================
   NEWSLETTER SIGNUP
   ========================= */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: #E9B96E;
  border-radius: 16px;
  padding: 36px 25px 28px 24px;
  box-shadow: 0 1px 10px 0 rgba(34,78,54,0.11);
}
.newsletter-signup h2, .newsletter-signup p {
  color: #224E36;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #224E36;
  color: #fff;
  font-size: 1rem;
  padding: 50px 0 18px 0;
  z-index: 10;
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-branding img {
  width: 44px;
  height: 44px;
}
.footer-nav, .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.footer-nav a, .footer-menu a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
  padding: 4px 6px;
  transition: background 0.12s, color 0.14s;
}
.footer-nav a:hover, .footer-menu a:hover {
  background: #E9B96E;
  color: #224E36;
}
.footer-contact {
  font-size: 0.97rem;
  margin-bottom: 0;
  color: #fff;
}
.footer-contact a {
  color: #E9B96E;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  transition: background 0.16s, box-shadow 0.14s;
}
.footer-social a:hover {
  background: #E9B96E;
  box-shadow: 0 5px 20px 0 rgba(34,78,54,0.12);
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.footer-copyright {
  width: 100%;
  margin-top: 36px;
  font-size: 0.93rem;
  color: #fff;
  opacity: 0.7;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #224E36;
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(34,78,54,0.16);
  z-index: 2000;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1rem;
  animation: cookiebannerfade 0.55s cubic-bezier(.4,.19,.67,.84);
}
@keyframes cookiebannerfade {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 27px;
  border: none;
  padding: 9px 27px;
  cursor: pointer;
  background: #E9B96E;
  color: #224E36;
  margin-top: 0;
  transition: background 0.16s, color 0.13s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #fff;
  color: #224E36;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: #224E36;
  border: 1.5px solid #E9B96E;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #E9B96E;
  color: #224E36;
}
/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34,78,54,0.74);
  z-index: 2010;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookiemodalfade .5s cubic-bezier(.3,.4,.73,1) forwards;
}
@keyframes cookiemodalfade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  min-width: 320px;
  max-width: 98vw;
  background: #fff;
  color: #224E36;
  border-radius: 23px;
  padding: 40px 24px 32px;
  box-shadow: 0 8px 28px 0 rgba(34,78,54,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #224E36;
  margin-bottom: 8px;
  font-size: 1.45rem;
}
.cookie-modal-content .cookie-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-toggle {
  width: 36px;
  height: 19px;
  background: #E9B96E;
  border-radius: 27px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  outline: none;
  border: none;
}
.cookie-modal-content .cookie-toggle[aria-checked="true"] {
  background: #224E36;
}
.cookie-modal-content .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
}
.cookie-modal-content .cookie-toggle[aria-checked="true"]:before {
  transform: translateX(16px);
}
.cookie-modal-content .cookie-essential {
  color: #224E36;
  font-weight: 700;
  opacity: 1!important;
  background: #E9B96E;
  padding: 3px 9px;
  border-radius: 10px;
  margin-left: 9px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  font-size: 1.5rem;
  border: none;
  color: #224E36;
  cursor: pointer;
}

/* =========================
   MISCELLANEOUS SPACING
   ========================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.step-by-step ol {
  margin-left: 1.3em;
  margin-bottom: 0;
  font-size: 1rem;
  color: #224E36;
}
.step-by-step li {
  margin-bottom: 13px;
}
.confirmation-message {
  background: #E9B96E;
  color: #224E36;
  border-radius: 15px;
  padding: 38px 24px 30px 24px;
  box-shadow: 0 1px 8px 0 rgba(34,78,54,0.08);
}
.confirmation-message h1 {
  color: #224E36;
}
.confirmation-message .next-steps {
  margin: 18px 0 22px 0;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 1024px) {
  .footer-contact, .footer-branding, .footer-nav, .footer-menu, .footer-social {
    flex-basis: 100%;
    max-width: 100%;
  }
  footer .container {
    gap: 20px;
  }
  .services-cards,
  .features-grid,
  .testimonials-slider, .testimonials-cards,
  .blog-article-cards, .content-grid,
  .quick-advice-cards {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  section {
    padding: 28px 0;
  }
  .footer-branding img {
    height: 34px;
    width: 34px;
  }
}
@media (max-width: 768px) {
  main {
    margin-bottom: 40px;
  }
  h1 {
    font-size: 1.55rem;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 13px;
  }
  .container {
    padding: 0 8px;
  }
  .services-cards,
  .features-grid,
  .testimonials-slider, .testimonials-cards,
  .blog-article-cards, .quick-advice-cards {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .card-container,
  .content-grid,
  .services-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .text-image-section,
  .content-wrapper.contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .contact-info, .map-address {
    min-width: unset;
    max-width: unset;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .confirmation-message {
    padding: 30px 10px 24px 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cookie-modal-content {
    padding: 19px 8px 19px;
    min-width: unset;
  }
}
@media (max-width: 550px) {
  header .container {
    padding: 13px 6px 13px 6px;
  }
  section {
    padding: 14px 0;
  }
  .cookie-consent-banner {
    padding: 15px 8px;
    font-size: 0.99rem;
  }
}
/* =========================
   UTILITIES
   ========================= */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.gap-24 { gap: 24px; }

/* =========================
   ANIMATIONS & INTERACTIONS
   ========================= */
.btn-primary,
button,
a {
  transition: background 0.15s, color 0.15s, box-shadow 0.16s, border 0.13s;
}
.card, .feature, .service-card, .service-list-item, .testimonial-card, .quick-advice-card, .blog-article-card, .advice-card {
  transition: box-shadow 0.15s, border-color 0.16s, background 0.16s;
}
/* Subtle card pop */
.card:hover, .feature:hover, .service-card:hover, .service-list-item:hover, .testimonial-card:hover, .advice-card:hover, .blog-article-card:hover {
  box-shadow: 0 9px 32px 0 rgba(34, 78, 54, 0.16);
}

/* =========================
   END OF CSS
   ========================= */
