/* ========================
   CSS RESET & BASE STYLES
   ======================== */
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: #F7F7F9;
  color: #1D2636;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, picture, svg {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: #28597A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #95C623;
}
ul, ol {
  list-style: none;
}

/* ========================
   BRAND FONTS
   ======================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #28597A;
}
h1  { font-size: 2.25rem; margin-bottom: 0.4em; line-height: 1.15; }
h2  { font-size: 1.65rem; margin-bottom: 0.6em; }
h3  { font-size: 1.15rem; margin-bottom: 0.3em; }
h4, h5 { font-size: 1rem; }

p, li, label, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  color: #283241;
}
strong { font-weight: 700; }

.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #28597A;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}

/* ========================
   CONTAINER & GENERAL LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 24px 0 rgba(40, 89, 122, 0.05), 0 1.5px 6px 0 rgba(149,198,35,0.07);
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(40, 89, 122, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header img {
  height: 41px;
  margin-right: 32px;
  transition: filter 0.2s;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 14px;
  background: none;
  color: #28597A;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
nav a.cta {
  background: #95C623;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(149,198,35,0.12);
  transition: background 0.15s, transform 0.15s,
              box-shadow 0.15s;
}
nav a.cta:hover, nav a.cta:focus {
  background: #28597A;
  color: #fff;
  transform: translateY(-2px) scale(1.06) rotate(-2.5deg);
  box-shadow: 0 6px 14px 0 rgba(40,89,122,0.09);
}
nav a:hover, nav a:focus {
  color: #95C623;
  background: #F7F7F9;
}

.mobile-menu-toggle {
  display: none;
  background: #28597A;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 2rem;
  padding: 7px 18px;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px 0 rgba(149,198,35,0.06);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #95C623;
  color: #fff;
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(40,89,122,0.90);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.61,-0.39,.44,1.36);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #28597A;
  border: none;
  font-size: 2rem;
  margin: 20px 22px 0 0;
  border-radius: 13px;
  cursor: pointer;
  padding: 8px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #95C623;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding: 50px 36px 30px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 14px 0 8px 0;
  border-radius: 7px;
  background: none;
  transition: background 0.17s, color 0.17s;
  width: 100%;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #95C623;
  color: #fff;
}
/* Hide navigation in header on mobile */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===============================
   HERO & SECTIONS (ARTISTIC STYLE)
   =============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(40, 89, 122, 0.08);
  position: relative;
}
section:nth-child(odd) {
  background: #f0f6ff;
}

section .cta {
  margin-top: 18px;
}

/* =========================
   BUTTONS & CALL TO ACTION
   ========================= */
.cta,
button,
input[type="button"],
input[type="submit"] {
  appearance: none;
  background: #28597A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 14px 32px;
  border: none;
  border-radius: 20px 3px 16px 23px;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 17px 0 rgba(40, 89, 122, 0.12);
  transition: background .18s, color .18s, transform .12s, box-shadow .2s;
  cursor: pointer;
  position: relative;
  outline: none;
  margin-top: 16px;
}
.cta:hover, .cta:focus, button.cta:active {
  background: #95C623;
  color: #fff;
  transform: translateY(-3px) scale(1.03) rotate(-3deg);
  box-shadow: 0 10px 24px 0 rgba(149,198,35,0.13);
}

/* ==========================
   CARDS, SERVICE TILES, etc.
   ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 26px;
  box-shadow: 0 2px 10px rgba(40,89,122,0.05);
  padding: 32px 28px;
  min-width: 270px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list {
  margin: 22px 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
}

.service-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 26px;
}
.service-tile {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 29px 15px 30px 12px;
  box-shadow: 0 4px 20px 0 rgba(40,89,122,0.06);
  padding: 32px 24px 24px 24px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .17s, box-shadow .16s, background .17s;
  margin-bottom: 20px;
}
.service-tile img {
  width: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 6px #95C62333);
}
.service-tile h3 {
  margin-bottom: 9px;
  color: #28597A;
  font-size: 1.13rem;
  font-weight: 800;
  text-align: center;
}
.service-tile p {
  text-align: center;
  font-size: 0.99rem;
}
.service-tile:hover, .service-tile:focus {
  background: #95C623;
  color: #fff;
  transform: translateY(-7px) scale(1.04) rotate(-1deg);
  box-shadow: 0 10px 34px 0 rgba(40,89,122,0.13);
}
.service-tile:hover h3,
.service-tile:hover p {
  color: #fff;
}

/* =========================
   FEATURE GRID / LIST
   ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1.5px 8px 0 rgba(40, 89, 122, 0.06);
  padding: 25px 20px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.feature-grid li img {
  width: 34px;
  margin-bottom: 3px;
  filter: drop-shadow(0 2px 6px #95C62322);
}
.feature-grid li strong {
  color: #28597A;
  font-size: 1.11rem;
  font-weight: 800;
  margin-bottom: -7px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 28px 0 rgba(40,89,122,0.07);
  margin-bottom: 20px;
  border-left: 6px solid #95C623;
  max-width: 600px;
  transition: box-shadow .17s, border-left-color .17s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 12px 24px 0 rgba(40,89,122,0.13);
  border-left-color: #28597A;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #1D2636;
  line-height: 1.45;
  font-style: italic;
}
.testimonial-info span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #28597A;
  font-size: 0.96rem;
  margin-left: 10px;
}

/* =========================
   CONTACT INFO
   ========================= */
.contact-row, .contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F7F7F9;
  border-radius: 17px;
  padding: 12px 16px;
  font-size: 1.05rem;
  color: #28597A;
}
.contact-info img {
  width: 21px;
  height: 21px;
}
.contact-info a {
  color: #28597A;
  text-decoration: underline;
  margin-left: 8px;
}
.contact-info a:hover {
  color: #95C623;
}

/* =========================
   FAQ LIST / ACCORDION
   ========================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 20px 0;
}
.faq-list > div {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 7px 0 rgba(40, 89, 122, 0.06);
  padding: 25px 22px;
  border-left: 5px solid #28597A;
  transition: box-shadow .15s, border-left-color .2s;
}
.faq-list > div:hover {
  border-left-color: #95C623;
  box-shadow: 0 6px 18px 0 rgba(149,198,35,0.13);
}
.faq-list h3 {
  margin-bottom: 8px;
  font-size: 1.07rem;
  color: #28597A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.faq-list p {
  font-size: 0.99rem;
}

.contact-cta {
  margin-top: 32px;
  padding: 20px 24px;
  background: #28597A;
  border-radius: 20px;
  color: #fff;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.contact-cta a {
  color: #95C623;
  font-weight: bold;
  text-decoration: underline;
}
.contact-cta a:hover { color: #fff; }

/* =========================
   TABLES & PRICING CHARTS
   ========================= */
table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(40,89,122,0.07);
  overflow: hidden;
  margin-top: 18px;
}
thead tr {
  background: #28597A;
}
thead th {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 16px 12px;
  text-align: left;
}
tbody tr {
  border-bottom: 1px solid #F7F7F9;
}
tbody tr:nth-child(odd) {
  background: #F7F7F9;
}
td {
  padding: 13px 12px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #28597A;
  color: #fff;
  padding: 38px 0 21px 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 6px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
}
footer nav a:hover {
  color: #95C623;
}
.footer-contact {
  margin-top: 15px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: #F7F7F9;
}
.footer-contact a {
  color: #95C623;
  text-decoration: underline;
  margin: 0 6px;
}
.footer-contact a:hover { color: #fff; }

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #28597A;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 32px rgba(40, 89, 122, 0.11);
  z-index: 110;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity .34s, transform .34s cubic-bezier(.68,-0.22,.35,1.27);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.cookie-banner button {
  padding: 10px 22px;
  border: none;
  outline: none;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: #95C623;
  color: #fff;
  transition: background .18s, color .18s, transform .12s, box-shadow .15s;
  box-shadow: 0 1.5px 6px 0 rgba(149,198,35,0.12);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #28597A;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner button.settings {
  background: none;
  color: #28597A;
  border: 2px solid #95C623;
  margin-left: 5px;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #95C623;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(200px);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(40,89,122,0.18);
  z-index: 130;
  max-width: 400px;
  width: 90vw;
  padding: 32px 22px 24px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .35s cubic-bezier(.44,-0.21,.55,1.34);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-24px);
}
.cookie-modal h3 {
  color: #28597A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 19px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  margin-right: auto;
}
.cookie-category input[type="checkbox"] {
  accent-color: #95C623;
  width: 19px;
  height: 19px;
  border-radius: 4px;
}
.cookie-modal .cookie-buttons {
  margin-top: 22px;
}
.cookie-modal .close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #95C623;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0 9px;
  border-radius: 10px;
  transition: background 0.18s;
}
.cookie-modal .close:hover { background: #F7F7F9; }

/* =========================
   RESPONSIVE MEDIA QUERIES
   ========================= */
@media (max-width: 1100px) {
  .service-tiles {
    gap: 18px;
  }
  .service-tile {
    padding: 23px 12px 18px 12px;
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .container, .content-wrapper {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .service-tiles, .feature-grid, .card-container, .content-grid, .contact-row, .contact-info-list {
    gap: 15px;
  }
  section {
    padding: 28px 6px;
  }
  .service-tile {
    min-width: 120px;
    padding: 19px 8px;
  }
  .feature-grid li {
    min-width: 110px;
    padding: 14px 10px;
  }
  .testimonial-card, .faq-list > div {
    padding: 12px 8px;
  }
}
@media (max-width: 768px) {
  .service-tiles, .feature-grid, .card-container, .content-grid, .contact-row, .contact-info-list {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
  }
  .contact-row, .contact-info-list {
    flex-direction: column;
    gap: 10px;
  }
  .section {
    margin-bottom: 40px;
    padding: 23px 4px;
  }
  h1  { font-size: 1.62rem; }
  h2  { font-size: 1.28rem; }
  h3  { font-size: 1.07rem; }
  .subheadline { font-size: 1.04rem; }
  .mobile-menu-toggle {
    font-size: 1.7rem;
    padding: 7px 13px;
  }
}
@media (max-width: 538px) {
  .footer-contact, .cookie-banner {
    font-size: 0.92rem;
  }
  .cookie-banner {
    padding: 13px 7px;
  }
  .cookie-modal {
    padding: 23px 6px 15px 9px;
    font-size: 0.95rem;
    max-width: 95vw;
  }
  .cookie-banner .cookie-buttons {
    gap: 7px;
  }
}

/* =========================
   VISUAL EFFECTS & DECORATION
   ========================= */

section, .card, .service-tile, .feature-grid li, .testimonial-card, .faq-list > div {
  position: relative;
  z-index: 1;
}

/* =========================
   MISCELLANEOUS UTILITIES
   ========================= */
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.rounded { border-radius: 20px; }
.shadow-micro { box-shadow: 0 1.5px 6px 0 rgba(40, 89, 122, 0.08); }

/* =========================
   ACCESSIBILITY FOCUS STYLES
   ========================= */
a:focus, button:focus, .cta:focus {
  outline: 2.5px dashed #95C623;
  outline-offset: 2.5px;
  background: #f4ffd9;
  color: #1D2636;
}

/* =========================
   PRINT STYLES
   ========================= */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu {
    display: none !important;
  }
}
