/* 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,
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;
  min-height: 100vh;
  background: #F7F7F7;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1A365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6B8B47;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
}
th, td {
  text-align: left;
  padding: 12px 8px;
  font-size: 1rem;
}
th {
  background: #1A365D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
td {
  background: #fff;
}
tr:nth-child(even) td {
  background: #F2FBF5;
}
strong {
  font-weight: 700;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.015em;
  color: #1A365D;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 0.6em;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5em;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1em;
  color: #6B8B47;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1em;
  color: #273046;
}

/* CONTAINER & MAIN WIDTHS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* SECTION SPACING - Artistic with Color Splashes */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 4px 28px 0 rgba(106, 139, 71, 0.08), 0 1.5px 0 #6B8B47 inset;
  position: relative;
}
section:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 110px; height: 110px;
  background: rgba(106,139,71,0.08);
  border-radius: 60% 40% 30% 70%/70% 30% 50% 50%;
  z-index: 0;
  pointer-events: none;
}
section > .container, .content-wrapper {
  position: relative;
  z-index: 1;
}

/* LAYOUT WRAPPERS */
.content-wrapper {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  max-width: 700px;
}

/* FLEXBOX MANDATORY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 19px 19px 8px 32px;
  box-shadow: 0 2px 13px rgba(26,54,93,0.12);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  min-width: 260px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(106, 139, 71, 0.24);
}
.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;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F7F7F7;
  border-left: 6px solid #6B8B47;
  border-radius: 24px 8px;
  margin-bottom: 20px;
  padding: 24px 22px;
  min-width: 220px;
  box-shadow: 0 3px 15px rgba(26,54,93,0.07);
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #222;
  margin-bottom: 0.7em;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #6B8B47;
  align-self: flex-end;
  font-size: 1rem;
}
.testimonial-card:hover {
  border-color: #1A365D;
  box-shadow: 0 6px 22px rgba(26,54,93,0.14);
  background: #fff;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: #1A365D;
  color: #fff;
  width: 100%;
  padding: 0 0 0 0;
  box-shadow: 0 2px 8px rgba(26,54,93,0.04);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px 12px 24px;
  flex-wrap: wrap;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
header nav a:hover, header nav a:focus {
  background: #F7F7F7;
  color: #1A365D;
}
header nav img {
  height: 40px; width: auto; margin-right: 10px;
}
header .cta.primary {
  margin-left: auto;
  margin-right: 20px;
  font-size: 1rem;
}
/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: #6B8B47;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 12px 2px 12px;
  cursor: pointer;
  margin-right: 10px;
  z-index: 202;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F7F7F7;
}
/* MOBILE NAVIGATION DRAWER */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,54,93,0.96);
  color: #fff;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.74, .09, .38, .93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 10px 0 30px rgba(0,0,0, 0.10);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 20px 0 12px 20px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6B8B47;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 24px;
  margin-top: 15px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.23rem;
  letter-spacing: 0.02em;
  padding: 13px 0;
  border-bottom: 1px solid #2f4471;
  transition: color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #6B8B47;
}
@media (max-width: 960px) {
  header nav a,
  header nav img {
    font-size: 0.96rem;
    padding: 4px 7px;
  }
  header nav {
    gap: 16px;
    padding-right: 6px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* BUTTONS / CTA STYLES */
.cta, .button, .btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 13px 32px;
  border: none;
  border-radius: 22px 6px 20px 8px;
  background: #6B8B47;
  color: #fff;
  font-size: 1.09rem;
  transition: background 0.24s, color 0.25s, box-shadow 0.24s, outline 0.2s;
  box-shadow: 0 2px 9px rgba(106,139,71,0.16);
  cursor: pointer;
  margin: 10px 0 0 0;
  position: relative;
}
.cta.primary {
  background: #6B8B47;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1A365D;
  color: #fff;
  box-shadow: 0 5px 20px rgba(26,54,93,0.13);
  outline: 2px solid #1A365D;
}
.cta.secondary {
  background: #1A365D;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #6B8B47;
  color: #fff;
  outline: 2px solid #6B8B47;
}

/* HERO & LANDING HEADLINES */
.text-section h1, .text-section h2, .text-section h3 {
  background: linear-gradient(90deg, #1A365D 40%, #6B8B47 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 532px) {
  h1 { font-size: 1.45rem; }
  .cta, .button, .btn {font-size: 0.97rem; padding: 11px 20px; }
}

/* FEATURES / SERVICES GRID EXAMPLES */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin-top: 42px;
}
.features-grid > div, .service-card {
  flex: 1 1 260px;
  background: #F2FBF5;
  border-radius: 18px 6px 22px 15px;
  box-shadow: 0 2px 11px rgba(106,139,71,0.10);
  padding: 30px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  min-height: 210px;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.18s;
}
.features-grid > div:hover, .service-card:hover {
  box-shadow: 0 8px 32px rgba(106,139,71,0.22), 0 0px 0 #fff inset;
}
.features-grid img, .service-card img {
  height: 36px;
  width: 36px;
  margin-bottom: 14px;
}
.features-grid h3, .service-card h3 {
  color: #6B8B47;
  font-size: 1.18rem;
  margin-bottom: 0.2em;
  margin-top: 0;
}
.services-list {
  gap: 26px;
}
.service-card strong {
  color: #1A365D;
}

/* FAQ-LIST */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.faq-list > div {
  background: #F7F7F7;
  padding: 18px 18px 15px 24px;
  border-left: 4px solid #6B8B47;
  border-radius: 16px 6px 18px 16px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  box-shadow: 0 2px 11px rgba(26,54,93,0.09);
  transition: border-color 0.18s, box-shadow 0.16s;
}
.faq-list > div:hover {
  border-color: #1A365D;
  box-shadow: 0 4px 22px rgba(26,54,93,0.12);
}
.faq-list h3 {
  margin-bottom: 0.4em;
}

/* TEAM & NOTE ELEMENTS */
.team-intro {
  background: #E6F2E9;
  border-left: 6px solid #6B8B47;
  border-radius: 15px 4px 18px 6px;
  padding: 20px 15px 13px 24px;
  margin: 1em 0;
}
.note {
  background: #F9E6AF;
  color: #6B8B47;
  border-radius: 12px 2px 18px 10px;
  padding: 13px 15px 13px 20px;
  margin: 14px 0;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(255,210,81,0.16);
  border-left: 4px solid #ffe067;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #F2FBF5;
  border-radius: 12px 6px 14px 10px;
  padding: 14px 18px;
  box-shadow: 0 1px 7px rgba(106,139,71,0.09);
}
.map-placeholder img {
  height: 48px;
  width: 48px;
}

/* FOOTER */
footer {
  background: #1A365D;
  padding: 38px 0 28px 0;
  box-shadow: 0 -2px 8px rgba(26,54,93,0.03);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 26px;
  margin-bottom: 5px;
}
footer nav a {
  color: #F7F7F7;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  transition: color 0.2s;
}
footer nav a:hover {
  color: #ffe067;
}
footer p {
  font-size: 0.98rem;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1A365D;
  color: #FFF;
  box-shadow: 0 -2px 19px rgba(26,54,93,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  padding: 22px 16px;
  z-index: 5000;
  font-size: 1rem;
  transition: transform 0.41s cubic-bezier(.78,.11,.47,.98);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex: 1 1 140px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: 20px 6px 20px 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .cookie-btn.accept {
  background: #6B8B47;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #fff;
  color: #1A365D;
}
.cookie-banner .cookie-btn.reject {
  background: #eee;
  color: #1A365D;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #DDEEF3;
  color: #1A365D;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  border: 2px solid #6B8B47;
  color: #6B8B47;
  padding: 8px 16px;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #6B8B47;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 8px;
  }
  .cookie-banner .cookie-buttons { gap: 8px; }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 5050;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,54,93,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  min-width: 320px;
  max-width: 98vw;
  border-radius: 28px 8px 30px 10px;
  padding: 42px 24px 28px 28px;
  box-shadow: 0 3px 38px rgba(26,54,93,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 5060;
  animation: slideUp 0.28s;
}
@keyframes slideUp {
  from { transform: translateY(44px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A365D;
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #6B8B47;
  width: 21px;
  height: 21px;
}
.cookie-category .locked {
  color: #acb2bc;
  margin-left: 7px;
  font-size: 0.98rem; 
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 23px; top: 20px;
  background: transparent;
  font-size: 2rem;
  border: none;
  color: #1A365D;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .close-modal:hover { color: #6B8B47; }

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  .content-grid, .features-grid, .services-list, .faq-list {
    gap: 16px;
  }
  .card-container { gap: 10px; }
}
@media (max-width: 768px) {
  section {
    padding: 18px 4px;
    margin-bottom: 40px;
  }
  .card, .service-card, .features-grid > div {
    padding: 18px 14px;
    min-width: 180px;
    font-size: 1rem;
  }
  .features-grid, .services-list, .faq-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .faq-list > div {
    min-width: 160px;
    gap: 12px; padding: 16px 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .team-intro, .note { padding: 8px 9px 8px 14px; font-size: 0.98em; }
  .map-placeholder { gap: 8px; padding: 8px 9px; }
}

@media (max-width: 530px) {
  .testimonial-card, .card, .service-card, .faq-list > div {
    min-width: 0;
    font-size: 0.97rem;
  }
  .container { padding: 0 2vw; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .service-card, .features-grid > div, .faq-list > div, .testimonial-card {
  transition: box-shadow 0.2s, border-color 0.23s, background 0.22s;
}
.cta, .button, .btn, .cookie-btn {
  transition: background 0.24s, color 0.23s, box-shadow 0.24s;
}

/* VISUAL ARTISTIC EFFECTS */
.features-grid > div::after, .service-card::after {
  content: '';
  position: absolute;
  bottom: -22px; right: -31px;
  width: 60px; height: 60px;
  background: rgba(106,139,71,0.09);
  border-radius: 76% 34% 66% 26%/64% 30% 60% 49%;
  z-index: 1;
  pointer-events: none;
}
.features-grid > div:nth-child(even)::after, .service-card:nth-child(even)::after {
  background: rgba(26,54,93,0.09);
  bottom: -23px; right: -12px;
}

/* UTILS / FORMATTING */
strong { font-weight: bold; }
hr { border: none; border-top: 1.5px solid #E3F0DF; margin: 52px 0; }

/* ACCESSIBLE FOCUS STATES */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2.5px solid #F7F7F7;
  background: #6B8B47;
  color: #fff;
}

/* SPACING BETWEEN CARDS/SECTIONS */
.card, .service-card, .testimonial-card, .faq-list > div {
  margin-bottom: 20px;
}
section + section {
  margin-top: 12px;
}

/* Z-INDEX LAYERING */
header, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  z-index: 9999;
}

/* ----- END OF STYLES ----- */