/*========================================================
  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, main, 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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F7F8FA;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

:root {
  --primary: #1A6740;
  --secondary: #289BE8;
  --accent: #F1F9F1;
  --gold: #D4AF37;
  --bg: #F7F8FA;
  --dark: #1A1A1A;
  --white: #fff;
  --shadow: 0 8px 32px 0 rgba(26, 103, 64, 0.10);
  --radius: 14px;
  --blk: #222;
  --footer-bg: #181e24;
}

/*========================================================
  Typography: Montserrat + Open Sans (Google Fonts recommended)
========================================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
}
p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--blk);
}
p {
  margin-bottom: 16px;
}
ul, ol {
  margin-inline-start: 16px;
  margin-bottom: 12px;
  list-style-type: disc;
}
ul li, ol li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* List Resets for Premium Feel */
ul li {
  padding-left: 0.5em;
  margin-left: 0.5em;
}

/* Display Font Fallback */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  src: local('Montserrat'), local('Montserrat-Regular');
  /* fallback Google Fonts @import in HTML recommended */
}

/*========================================================
  Containers, Layouts, Sections
========================================================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Features, Cards, Grids using Flexbox Only */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 16px 48px 0 rgba(26, 103, 64, 0.18);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid #e7e3d1;
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px 0 rgba(180, 139, 20, 0.06);
}
.testimonial-meta span {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.feature-item {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px 0 rgba(26, 103, 64, 0.06);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 350px;
  transition: transform 0.25s, box-shadow 0.25s;
  min-width: 260px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.feature-item h3 {
  color: var(--primary);
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 34px 0 rgba(212, 175, 55, 0.10);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: 0 4px 20px 0 rgba(40,155,232,0.03);
  margin-bottom: 10px;
  transition: box-shadow 0.19s;
}
.faq-item:hover {
  box-shadow: 0 8px 32px 0 rgba(40,155,232,0.07);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/*========================================================
  Hero Section
========================================================*/
.hero {
  background: linear-gradient(135deg, var(--accent) 80%, var(--gold) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  min-height: 320px;
  box-shadow: 0 20px 48px -20px rgba(40, 155, 232, 0.07);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.05);
}
.hero p {
  font-size: 1.1rem;
  color: var(--blk);
  max-width: 600px;
}

/*========================================================
  Buttons & CTA
========================================================*/
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
  padding: 14px 40px;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(26,103,64, 0.14);
  transition: background 0.23s, color 0.23s, box-shadow 0.18s;
  margin-top: 10px;
  outline: none;
  cursor: pointer;
  position: relative;
}
.cta-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.22s;
  transform: translateX(-50%);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.13);
}
.cta-btn:hover:after, .cta-btn:focus:after {
  width: 60%;
}

.footer-nav a, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--primary);
  margin-right: 24px;
  padding: 6px 8px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.footer-nav a:last-child,.main-nav a:last-child,.mobile-nav a:last-child {
  margin-right: 0;
}
.main-nav a:hover, .main-nav a:focus, .footer-nav a:hover, .footer-nav a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: rgba(212,175,55,0.095);
}

/*========================================================
  Header, Nav, Footer
========================================================*/
header {
  background: var(--white);
  box-shadow: 0 5px 32px 0 rgba(26, 103, 64, 0.04);
  padding: 0;
  z-index: 50;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-top: 11px;
  padding-bottom: 11px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 7px 14px;
}

/* Hide mobile elements on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

footer {
  background: var(--footer-bg);
  color: var(--accent);
  padding: 48px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
  background: none;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
}
.contact-info div {
  color: #d6dac1;
  font-size: 1rem;
}
.copyright {
  color: #c5c7b0;
  font-size: 0.96rem;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}

/*========================================================
  Misc Section Styling For Premium Feel
========================================================*/
.cta-section {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(26,103,64,0.08);
  margin-top: 20px;
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  border-left: 6px solid var(--gold);
}
.benefits-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 23px 20px 16px 20px;
  margin-top: 30px;
  box-shadow: 0 2px 12px rgba(40,155,232,0.10);
}
.benefits-list h2 {
  margin-bottom: 11px;
}

.map {
  display: flex;
  align-items: center;
  margin-top: 16px;
  color: var(--primary);
  gap: 14px;
}

/*========================================================
  Mobile Responsive
========================================================*/
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .container {
    max-width: 1000px;
  }
  .feature-item {
    max-width: 280px;
    min-width: 200px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .content-grid, .footer-nav, .contact-info {
    flex-wrap: wrap;
    gap: 18px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .content-wrapper{
    gap: 18px;
  }
  .hero {
    min-height: 210px;
    padding: 38px 0 22px 0;
    margin-bottom: 36px;
  }
  .map {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .benefits-list, .cta-section, .testimonial-card, .faq-item {
    padding: 17px 10px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    max-width: 100%;
    min-width: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 110;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 2rem;
    box-shadow: 0 3px 12px rgba(26,103,64,0.10);
    cursor: pointer;
    transition: background 0.15s, box-shadow .18s;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: var(--accent);
    color: var(--gold);
  }
  .main-nav {
    display: none !important;
  }
}

/*========================================================
  MOBILE MENU (Burger Navigation)
========================================================*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 92vw;
  height: 100%;
  background: var(--white);
  box-shadow: -12px 0 42px rgba(26,103,64,0.14);
  z-index: 9999;
  padding: 0 0 0 0;
  transform: translateX(102%);
  transition: transform 0.36s cubic-bezier(.74,0,.22,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 20px 0 0;
  padding: 6px 15px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  font-family: inherit;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 22px 30px 30px 20px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--primary);
  padding: 11px 7px;
  border-radius: 8px;
  font-weight: 600;
  background: none;
  margin-right: 0;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--accent); color: var(--gold); }
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important;}
}

/* Overlay for when menu is open (if used via JS) */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,103,64,0.28);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/*========================================================
  Cookie Consent Banner & Modal
========================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -2px 32px 0 rgba(26,103,64, 0.13);
  border-top: 3px solid var(--gold);
  z-index: 99999;
  padding: 23px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform 0.42s cubic-bezier(.76,0,.33,1), opacity 0.3s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 0.99rem;
  color: var(--blk);
  margin-bottom: 7px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
  padding: 9px 32px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 2px 8px rgba(26,103,64,0.07);
  transition: background 0.17s, color 0.2s;
  cursor: pointer;
  margin-right: 4px;
}
.cookie-btn:last-child { margin-right: 0; }
.cookie-btn.settings {
  background: var(--secondary);
}
.cookie-btn.accept {
  background: var(--gold); color: var(--primary);
}
.cookie-btn.reject {
  background: #dadada; color: var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 4px 18px var(--gold, #D4AF37, 0.09);
  background: var(--primary);
  color: var(--gold);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  color: var(--gold);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #cfcfcf;
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal{
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  min-width: 320px;
  max-width: 95vw;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 16px 52px 0 rgba(26,103,64,.18);
  z-index: 100000;
  padding: 38px 22px 26px 22px;
  display: none;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.34s, transform 0.37s;
}
.cookie-modal.active{
  display: flex;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  margin-bottom: 9px;
  color: var(--gold);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-toggle {
  min-width: 42px;
  min-height: 26px;
  appearance: none;
  border-radius: 15px;
  background: #ececec;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.21s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
  background: var(--primary);
}
.cookie-category-label {
  font-family: 'Open Sans';
  font-size: 1rem;
  font-weight: 500;
  color: var(--blk);
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover { color: var(--gold); }

/* Modal overlay effect */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,103,64,0.21);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 650px) {
  .cookie-modal { padding: 22px 7px 18px 7px; }
}

/*========================================================
  Utilities, Microinteractions
========================================================*/
.shadow-gold {
  box-shadow: 0 8px 32px 0 rgba(212,175,55,.12)!important;
}
.text-gold { color: var(--gold)!important; }
.text-primary { color: var(--primary)!important; }
.bg-gold { background: var(--gold)!important; }
.bg-accent { background: var(--accent)!important; }
.rounded { border-radius: var(--radius)!important; }

/* Logo tweaks */
header img {
  height: 44px;
  max-width: 170px;
  margin-right: 24px;
}

/* Call-to-action section for mobile spacing */
@media (max-width: 480px) {
  .cta-section { padding: 16px 5px; }
  .feature-item { padding: 18px 7px; }
  .hero { padding: 22px 0 12px 0; }
}

/* Prevent all overlapping - Card Spacing */
.card, .feature-item, .testimonial-card, .faq-item, .cookie-banner, .cta-section {
  margin-bottom: 20px;
}
.section, section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}

/* Misc accessibility & selection styles */
::selection {
  background: var(--gold);
  color: var(--primary);
}

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