/* ==== CSS RESET & BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F4F9FB;
  color: #17384F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #205C83;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.68,-0.55,.27,1.55);
}
a:hover,a:focus {
  color: #217236;
  outline: none;
  text-decoration: underline;
}

/* ==== VARIABLES (fallbacks for custom properties) ==== */
:root {
  --primary: #205C83;
  --secondary: #F4F9FB;
  --white: #FFFFFF;
  --accent: #217236;
  --accent-light: #58A05D;
  --danger: #B52A2A;
  --text-dark: #17384F;
  --text-secondary: #3C5567;
  --shadow: 0 6px 24px rgba(32,92,131,0.08);
  --radius: 18px;
  --transition: 0.2s cubic-bezier(.68,-0.55,.27,1.55);
}


/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #205C83;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-top: 32px;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.25;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, ul, ol, dl, address {
  color: #3C5567;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.strong, strong {
  font-weight: 700;
  color: #205C83;
  letter-spacing: 0.2px;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5em;
}
ul li:before {
  content: '▇';
  color: #58A05D;
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 2px;
}

/* ==== CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  /* section main wrapper */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 32px rgba(32,92,131,0.14);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0;
  width: 100%;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div:hover {
  box-shadow: 0 12px 32px rgba(32,92,131,0.14);
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #F4F9FB;
  box-shadow: 0 5px 16px rgba(32,92,131,0.06);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    gap: 16px;
  }
  .card {
    min-width: 160px;
    padding: 18px 12px;
  }
  .feature-grid > div {
    min-width: 140px;
    max-width: none;
    padding: 18px 10px 12px 10px;
  }
}
@media (max-width: 650px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature-grid > div {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* ==== HEADER, LOGO, NAV ==== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 16px rgba(32,92,131,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  height: 72px;
  min-height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  max-height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
  padding: 10px 6px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a.cta-btn {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-left: 10px;
  box-shadow: 0 4px 16px rgba(33, 114, 54, 0.07);
  transition: background var(--transition),transform var(--transition);
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #58A05D;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

.main-nav a:hover, .main-nav a:focus {
  background: #F4F9FB;
  color: #217236;
}

.mobile-menu-toggle {
  display: none;
  background: #205C83;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.1rem;
  padding: 6px 18px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  margin-left: 12px;
  transition: background var(--transition);
  outline: none;
}
.mobile-menu-toggle:focus {
  background: #58A05D;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,92,131,0.97);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.menu-open {
  transform: translateX(0%);
}
.mobile-menu-close {
  margin-left: auto;
  margin-top: 10px;
  margin-right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: color var(--transition);
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #58A05D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 4px;
  line-height: 1.2;
  width: 90%;
  display: block;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #58A05D;
  color: #fff;
}

@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== HERO & CTA ==== */
.cta-btn {
  background: var(--accent);
  color: var(--white) !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  border: none;
  border-radius: 100px;
  padding: 14px 38px;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 0 6px 22px rgba(33, 114, 54, 0.13);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #58A05D;
  color: #fff !important;
  transform: scale(1.045);
  box-shadow: 0 10px 35px rgba(33, 114,54,0.18);
  outline: none;
}
.cta-subtext {
  color: #217236;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  background: #F4F9FB;
  border-left: 7px solid #205C83;
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(32,92,131,0.14);
  transform: translateY(-2px) scale(1.017);
}
.testimonial-card p {
  color: #17384F;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.testimonial-meta {
  color: #205C83;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-meta span {
  font-size: 1.1rem;
  color: #217236;
  margin-left: 8px;
}

/* ==== LISTS & FACT BLOCKS ==== */
.included-services-list {
  background: #E2F2E6;
  border-radius: var(--radius);
  padding: 20px 24px 14px 24px;
  margin: 28px 0 18px 0;
}
.included-services-list h2 {
  color: #217236;
  font-size: 1.12rem;
  margin-bottom: 12px;
  font-weight: 800;
}
.savings-highlights {
  background: #f8ebd7;
  border-radius: var(--radius);
  padding: 18px 20px 8px 20px;
  margin-top: 20px;
}
.savings-highlights h3 {
  color: #BA6A18;
  font-size: 1rem;
  margin-bottom: 8px;
}
.company-facts {
  margin: 34px 0 18px 0;
  background: #205C83;
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 16px rgba(32,92,131,0.13);
}
.company-facts ul li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  position: relative;
}
.company-facts ul li:before {
  content: '•';
  color: #F4F9FB;
  left: -1em;
  position: relative;
  margin-right: 8px;
}

/* ==== FAQ ==== */
.faq-list {
  margin-top: 14px;
  margin-bottom: 16px;
}
.faq-list dt {
  color: #205C83;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  margin-top: 12px;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.faq-list dd {
  margin-left: 0.6em;
  margin-bottom: 10px;
  color: #3C5567;
}

.contact-hint ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.contact-hint li {
  color: #205C83;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 0;
}
.contact-hint li:before {
  display: none;
}

address {
  font-style: normal;
}

/* ==== TABLE ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
thead tr {
  background: #205C83;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
}
thead th {
  padding: 16px 10px;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0.04em;
}
tbody td {
  padding: 13px 11px;
  border-bottom: 1px solid #F4F9FB;
  color: #3C5567;
  font-size: 1rem;
}
tbody tr:nth-child(even) {
  background: #F4F9FB;
}
@media (max-width: 600px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }
  thead tr { display: none; }
  td {
    padding: 12px;
    border: none;
    position: relative;
  }
  td:before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 12px;
    font-weight: 700;
    color: #205C83;
  }
}

/* ==== FORMS (not visible here but style base) ==== */
input[type="text"],input[type="email"],input[type="tel"],textarea {
  width: 100%;
  border: 2px solid #E0E7EF;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  margin-bottom: 18px;
  background: #FFFFFF;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus,textarea:focus {
  border-color: #205C83;
  box-shadow: 0 2px 12px rgba(32,92,131,0.08);
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 20px;
  border: none;
  border-radius: 40px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition),transform var(--transition);
  box-shadow: 0 3px 18px rgba(33,114,54,0.12);
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #58A05D;
  transform: scale(1.03);
}

/* ==== FOOTER ==== */
footer {
  background: #205C83;
  color: #fff;
  padding: 56px 20px 24px 20px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo {
  flex: 1 1 160px;
  min-width: 120px;
}
.footer-logo img {
  width: 52px;
  min-width: 52px;
  margin-bottom: 16px;
}
.footer-links, .footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 130px;
  min-width: 130px;
}
.footer-links a,.footer-legal-links a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  opacity: 0.86;
  margin-bottom: 2px;
  transition: color var(--transition),text-decoration var(--transition);
}
.footer-links a:hover,.footer-legal-links a:hover {
  text-decoration: underline;
  color: #58A05D;
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #F4F9FB;
  margin-bottom: 10px;
  flex: 2 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact img {
  width: 19px;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 18px;
}
.footer-social a img {
  width: 28px;
  border-radius: 6px;
  background: #fff;
  padding: 4px 5px;
  box-shadow: 0 2px 8px rgba(32,92,131,.14);
  transition: background 0.13s, filter 0.18s;
  filter: grayscale(0.45) brightness(1.13);
}
.footer-social a:hover img {
  background: #58A05D;
  filter: none;
}
@media (max-width: 900px) {
  footer .container {
    gap: 18px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-social {
    margin-top: 18px;
    gap: 15px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #205C83;
  color: #fff;
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 30px rgba(32,92,131,0.11);
  padding: 18px 24px;
  gap: 24px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  animation: fadeInBanner 0.45s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes fadeInBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner-message {
  flex: 4 1 60%;
}
.cookie-banner-buttons {
  flex: 2 1 240px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-btn {  
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 26px;
  cursor: pointer;
  margin: 0 2px;
  box-shadow: 0 2px 10px rgba(32,92,131,0.09);
  transition: background .18s, color .18s, transform .18s;
}
.cookie-btn.accept {
  background: #58A05D;
  color: #fff;
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: #217236;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #B52A2A;
  border: 2px solid #B52A2A;
}
.cookie-btn.reject:hover,.cookie-btn.reject:focus {
  background: #ffe3e3;
  color: #B52A2A;
}
.cookie-btn.settings {
  background: #fff;
  color: #205C83;
  border: 2px solid #205C83;
}
.cookie-btn.settings:hover,.cookie-btn.settings:focus {
  background: #205C83;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 12px;
    font-size: 1rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 13px;
    align-items: flex-end;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,92,131,0.52);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.26s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  width: 98%;
  max-width: 390px;
  box-shadow: 0 14px 60px rgba(32,92,131,0.19);
  padding: 36px 28px 32px 28px;
  position: relative;
  color: #205C83;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  animation: popupSlide .34s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popupSlide {
  from { transform: translateY(80px) scale(0.97); }
  to { transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #205C83;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #B52A2A;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  font-weight: 800;
  color: #217236;
  margin-bottom: 12px;
}
.cookie-categories {
  margin: 22px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  transform: scale(1.24);
  accent-color: #217236;
}
.cookie-category label {
  font-weight: 600;
  color: #205C83;
}
.cookie-essential {
  color: #3C5567;
  font-size: 0.99rem;
  font-style: italic;
  margin-left: 12px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

/* ==== MAP EMBED ==== */
.map-embed {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  padding: 15px 18px;
  margin-top: 14px;
  box-shadow: 0 2px 8px rgba(32,92,131,0.09);
}
.map-embed img {
  width: 40px;
}

/* ==== UTILITIES ==== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 24px; }
.mt-4 { margin-top: 24px; }
.mt-2 { margin-top: 16px; }
.w-100 { width: 100%; }


/* ==== MEDIA QUERIES - TYPO SCALE ==== */
@media (max-width: 650px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.12rem; }
  .cta-btn { font-size: 1rem; padding: 11px 24px; }
}

/* ==== SPACING AND LAYOUT PATTERNS (MANDATORY) ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== REMOVE GRID/COLUMNS ==== */
/* No grid or column properties used anywhere */
