/* 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, 
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;
}
html {
  height: 100%;
}
footer p {
  color: white !important;
}
body {
  min-height: 100vh;
  background: #FFF8F3;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #283D63;
  box-sizing: border-box;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #5BC06F;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #283D63;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

/* BRAND FONT-FACE FALLBACKS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #283D63;
  --secondary: #5BC06F;
  --accent: #FFFFFF;
  --bg: #FFF8F3;
  --card: #FFFFFF;
  --highlight: #FFD7B5;
  --shadow: 0 2px 20px rgba(190,128,75,0.10);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1190px;
  padding: 0 18px;
  margin: 0 auto;
}

/* HEADER & NAVIGATION */
header {
  background: var(--accent);
  box-shadow: var(--shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 18px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  background: transparent;
  border-radius: 10px;
  padding: 6px 13px;
  transition: background 0.13s, color 0.13s;
}
header nav a:hover, header nav a:focus {
  background: var(--highlight);
  color: var(--secondary);
}
header img {
  height: 44px;
  border-radius: 10px;
}

.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
  padding: 11px 28px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(91, 192, 111, 0.12);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #46a15b;
  box-shadow: 0 6px 28px 0 rgba(91,192,111,0.17);
  transform: translateY(-1px) scale(1.03);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 1021;
  background: var(--secondary);
  color: var(--accent);
  font-size: 32px;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px 0 rgba(91,192,111,0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 0 32px rgba(40, 61, 99, 0.18);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.87,.01,.56,1.04);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--secondary);
  color: var(--accent);
  font-size: 32px;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 22px 20px 0 0;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 0;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--primary);
  background: transparent;
  border-radius: 10px;
  padding: 9px 22px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--highlight);
  color: var(--secondary);
}

@media (max-width: 1100px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 13px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN */
main {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  background: none;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: 0.005em;
}
h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 0.8em;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
h4, h5 {
  font-size: 1rem;
  font-weight: 700;
}

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #3d3b36;
}
p {
  margin-bottom: 18px;
}
.tagline {
  font-size: 1.4rem;
  color: var(--secondary);
  font-family: var(--font-display);
  margin-bottom: 10px;
  font-weight: 700;
}

ul, ol {
  margin: 0 0 18px 0;
  color: #564b2c;
}
ul {
  list-style: disc inside;
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
}

.text-section {
  margin-bottom: 24px;
}
.text-section ul {
  margin-top: 10px;
  margin-bottom: 11px;
}
.text-section p {
  margin-bottom: 7px;
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 22px 25px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
    align-items: flex-start;
  }
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0 0 24px 0;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 190px;
  min-width: 180px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 23px 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.17s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 28px 0 rgba(40,61,99,0.12);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.feature-grid span {
  color: #736042;
  font-size: 0.97rem;
  margin-top: 2px;
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF6EB;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(190,128,75,0.11);
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #312108;
  font-style: italic;
  margin: 0 !important;
}
.testimonial-meta {
  margin-left: auto;
  text-align: right;
}
.testimonial-meta span {
  font-size: 0.93rem;
  color: var(--primary);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #FFFDF9;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(91,192,111,0.10);
  padding: 11px 18px;
  font-family: var(--font-display);
  margin: 28px 0 0 0;
  font-size: 1.01rem;
  color: var(--secondary);
  font-weight: 700;
}
.trust-badges img {
  height: 25px;
  width: 25px;
}

/* Service/Blog Cards/Overview */
.service-overview-cards, .service-cards, .blog-previews, .case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.service-overview-cards li,
.service-cards li,
.blog-previews li,
.case-studies > div {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 360px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 23px 21px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.service-overview-cards li:hover,
.service-cards li:hover,
.blog-previews li:hover,
.case-studies > div:hover {
  box-shadow: 0 7px 28px 0 rgba(40,61,99,0.13);
  transform: translateY(-2px) scale(1.014);
}
.service-overview-cards h3,
.service-cards h3,
.blog-previews h3,
.case-studies h3 {
  font-size: 1.18rem;
  color: var(--secondary);
  margin-bottom: 7px;
}
.service-overview-cards span,
.service-cards span {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.07rem;
  margin-top: 8px;
}
.blog-previews a {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-block;
  padding: 8px 16px;
  background: var(--secondary);
  color: #fff;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.blog-previews a:hover {
  background: var(--primary);
}

/* TABLES */
.service-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0 24px 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(91,192,111,0.13);
  overflow: hidden;
  font-size: 1rem;
}
.service-pricing-table th,
.service-pricing-table td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1.5px solid #FFE2C4;
}
.service-pricing-table thead {
  background: var(--highlight);
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}
.service-pricing-table tbody td {
  font-family: var(--font-body);
  color: #474746;
}

/* Newsletter & CTA SECTION */
.newsletter-signup, .cta-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #FFF6EB;
  padding: 27px 18px 18px 27px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: flex-start;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  align-items: flex-start;
  margin-bottom: 23px;
  padding: 0;
}
.contact-details li {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border-radius: 12px;
  padding: 11px 20px 10px 14px;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
.contact-details img {
  width: 28px;
  height: 28px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #FDF0DF;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(240,170,70,0.10);
  padding: 24px 22px;
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.map-placeholder img {
  width: 40px; height:40px;
}

.form-note, .contact-info-note {
  background: #FFF6EB;
  padding: 15px 18px 11px 18px;
  border-radius: 9px;
  box-shadow: 0 1px 10px 0 rgba(255,183,104,0.08);
  color: #4b4b49;
  font-size: 1rem;
  margin-bottom: 11px;
}

/* FAQ / ACCORDION (not interactive here) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h3 {
  font-size: 1.08rem;
  color: var(--secondary);
  margin-bottom: 3px;
}
.faq-accordion p {
  margin: 0 0 0 6px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 32px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}
footer img {
  height: 44px;
  border-radius: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 3px;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  font-family: var(--font-display);
  padding: 2px 4px;
  border-radius: 7px;
  transition: background 0.15s, color 0.13s;
  text-decoration: none;
}
footer nav a:hover, footer nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  color: var(--accent);
  font-size: 0.97rem;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .footer-contact, footer nav {
    align-items: center;
    text-align: center;
  }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1150px) {
  .feature-grid li,
  .service-overview-cards li,
  .service-cards li,
  .blog-previews li,
  .case-studies > div {
    min-width: 170px;
    max-width: 99%;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-overview-cards, .service-cards, .blog-previews, .case-studies {
    gap: 18px;
  }
  .feature-grid li, .service-overview-cards li, .service-cards li, .blog-previews li, .case-studies > div {
    min-width: 90vw;
    max-width: 100%;
    padding: 20px 13px 15px 15px;
  }
  .section {
    padding:32px 6vw;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 7px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .feature-grid, .service-overview-cards, .service-cards, .blog-previews, .case-studies {
    flex-direction: column;
    gap: 13px;
  }
  .section {
    margin-bottom: 37px;
    padding: 22px 2vw 30px 2vw;
  }
  .testimonial-card, .trust-badges, .newsletter-signup, .cta-section {
    padding: 12px 8px 11px 12px;
  }
}

/* BUTTONS & INTERACTIONS */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s, transform 0.15s;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid var(--secondary);
}

/* Gaps between major content blocks */
.section + .section,
.main + .main,
.content-wrapper + .content-wrapper {
  margin-top: 40px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF6EB;
  box-shadow: 0 -2px 20px rgba(190,128,75,0.10);
  color: #493109;
  padding: 22px 16px 17px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  z-index: 5500;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: slideInUp 0.29s;
}
@keyframes slideInUp {
  from { transform: translateY(90px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-btn {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 13px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.11s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
}
.cookie-btn.cookie-settings {
  background: var(--highlight);
  color: var(--primary);
}
.cookie-btn.cookie-settings:hover {
  background: #ffd099;
}


/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,61,99,0.28);
  z-index: 5550;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.23s;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal {
  background: #FFFFFC;
  color: #392108;
  max-width: 440px;
  width: 93vw;
  border-radius: 19px;
  box-shadow: 0 10px 50px rgba(40,61,99,0.15);
  padding: 37px 21px 26px 27px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5551;
  animation: popIn 0.27s cubic-bezier(.7,.1,.6,1.04);
}
@keyframes popIn {
  from {transform: scale(0.90); opacity: 0;} to {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  margin-bottom: 8px;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #FFF6EB;
  border-radius: 11px;
  padding: 13px 19px 12px 11px;
  box-shadow: 0 1px 6px 0 rgba(255,183,104,0.10);
  flex: 1;
  color: #333020;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--secondary);
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #c0c0c0;
  pointer-events: none;
}
.cookie-category.essential label {
  font-weight: bold;
}
.cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 19px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-close {
  background: var(--secondary);
  color: #fff;
  border-radius: 11px;
  padding: 7px 19px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
}
.cookie-modal-close:hover {
  background: var(--primary);
}

@media (max-width:600px){
  .cookie-modal{padding:17px 4vw 17px 5vw;}
  .cookie-modal h2{font-size:1.1rem;}
  .cookie-category{padding:9px 7px 10px 8px;font-size:0.92rem;}
}

/* MISC */
::-webkit-scrollbar {
  height: 12px; width: 10px;
  background: #f5ecd9;
  border-radius:7px;
}
::-webkit-scrollbar-thumb {
  background: #ffd7b5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f7b774;
}

/* Utility */
.text-center { text-align:center; }
.d-flex { display: flex !important; }
.w-100 { width: 100%; }

/* END OF CSS */
