/* =====================================
   AVARA SPICC "modern_bold" CSS STYLES
   ===================================== */
/* --------------------
   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-family: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F6FA;
  color: #212E40;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #212E40;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6FCBC1;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
ul, ol {
  padding-left: 32px;
}


/* --------------------
  BRAND FONTS
--------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #212E40;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #6FCBC1;
  font-weight: 700;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}


/* ========================
   CONTAINERS & LAYOUTS
   ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 20px 0 rgba(21,40,71,0.07);
}
/* if section is inside .hero-section, override padding & bg */
.hero-section.section {
  background: none;
  box-shadow: none;
  padding: 0;
}

/* For lists of cards (custom flex layouts) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(33,46,64,0.10);
  margin-bottom: 20px;
  padding: 28px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(33,46,64,0.18);
  transform: translateY(-4px) scale(1.025);
  z-index: 1;
}
/* Responsive content-column flex layouts */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Text-image alignment (used on future pages) */
.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: #F5F6FA;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(33,46,64,0.09);
  margin-bottom: 24px;
  color: #212E40;
  border-left: 8px solid #6FCBC1;
  min-width: 260px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px 0 rgba(33,46,64,0.14);
  border-left-color: #212E40;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(111,203,193,0.11);
  padding: 24px 20px;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  border: 2.5px solid #F5F6FA;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature:hover {
  border-color: #6FCBC1;
  box-shadow: 0 6px 32px 0 rgba(111,203,193,0.17);
  z-index: 2;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  background: #6FCBC116;
  border-radius: 50%;
  padding: 6px;
}


/* ================
   HEADER/NAVIGATION
   ================ */
header {
  background: #fff;
  box-shadow: 0 4px 28px 0 rgba(33,46,64,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  height: 58px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #212E40;
  font-weight: 700;
  letter-spacing: .03em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
  line-height: 1.2;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #6FCBC1;
}
.main-nav .button-primary {
  margin-left: 10px;
}
.mobile-menu-toggle {
  background: #212E40;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #6FCBC1;
}
/* -----------------------
   MOBILE MENU SYSTEM
------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #212E40;
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.79,.14,.15,.86);
  box-shadow: 0 10px 40px 0 rgba(21,40,71,0.27);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 24px 6px 0;
  cursor: pointer;
  z-index: 1110;
  transition: color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #6FCBC1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px 40px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 6px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6FCBC1;
  color: #212E40;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* ===============
   HERO SECTIONS
   =============== */
.hero-section {
  background-color: #212E40;
  color: #fff;
  padding: 72px 0 60px 0;
  min-height: 284px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-section .subheadline {
  color: #6FCBC1;
  font-size: 1.27rem;
  font-weight: 800;
}
.hero-section .button-primary {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 24px 0;
    min-height: 160px;
  }
  .hero-section .container {
    align-items: flex-start;
    gap: 14px;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
}
/* Standalone .thank-you section */
section.thank-you {
  margin-bottom: 70px;
  padding: 60px 0;
  background: #6FCBC1;
  color: #212E40;
  border-radius: 32px;
  text-align: center;
}
section.thank-you h1 {
  color: #212E40;
}
section.thank-you .button-primary {
  margin-top: 24px;
}


/* ========================
   BUTTONS, LINKS, INTERACTION
   ======================== */
.button-primary, .button-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 14px 34px;
  border-radius: 32px;
  transition: background 0.20s, color 0.18s, box-shadow 0.2s, border-color 0.2s;
  outline: none;
  border: none;
  margin: 8px 0;
  box-shadow: 0 2px 12px rgba(33,46,64,0.02);
  cursor: pointer;
  line-height: 1.1;
}
.button-primary {
  background: #6FCBC1;
  color: #212E40;
  border: 2.5px solid #6FCBC1;
}
.button-primary:hover, .button-primary:focus {
  background: #212E40;
  color: #fff;
  border-color: #212E40;
  box-shadow: 0 4px 24px 0 rgba(33,46,64,0.14);
}
.button-secondary {
  background: #fff;
  color: #6FCBC1;
  border: 2.5px solid #6FCBC1;
}
.button-secondary:hover, .button-secondary:focus {
  background: #6FCBC1;
  color: #fff;
  border-color: #212E40;
  box-shadow: 0 4px 24px 0 rgba(33,46,64,0.14);
}
.button-primary:active, .button-secondary:active {
  opacity: .90;
}


/* =====================
   ADDITIONAL COMPONENTS
   ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
  margin-bottom: 30px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(33,46,64,0.07);
  padding: 22px 18px;
  font-size: 1rem;
  position: relative;
  border-left: 5px solid #6FCBC1;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.faq-item h3 {
  color: #212E40;
  margin-bottom: 10px;
  font-size: 1.19rem;
  font-weight: 800;
}
.faq-item:hover {
  box-shadow: 0 5px 24px 0 rgba(33,46,64,0.12);
  border-left-color: #212E40;
}
.search-snippet {
  background: #6FCBC1;
  color: #fff;
  font-size: 1.09rem;
  padding: 18px 20px;
  margin-top: 16px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(33,46,64,0.09);
  margin-bottom: 18px;
}
/* Styled links in secondary contexts */
.content-wrapper a:not(.button-primary):not(.button-secondary) {
  color: #6FCBC1;
  font-weight: 700;
  transition: color 0.15s;
}
.content-wrapper a:not(.button-primary):not(.button-secondary):hover {
  color: #212E40;
  text-decoration: underline;
}

/* =====================
   FOOTER & CONTACT SNIPPET
   ===================== */
footer {
  background: #212E40;
  color: #fff;
  padding: 40px 0 20px 0;
  margin-top: 60px;
  border-radius: 28px 28px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav, .footer-social, .contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav {
  min-width: 150px;
}
.footer-nav a {
  color: #6FCBC1;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 1.02rem;
  margin-bottom: 3px;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-social {
  flex-direction: row;
  gap: 22px;
  margin-top: 10px;
}
.footer-social a {
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  transition: background 0.14s;
}
.footer-social a:hover {
  background: #6FCBC1;
}
.footer-social img {
  width: 27px;
  height: 27px;
  display: block;
}
.contact-snippet {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  max-width: 350px;
  gap: 8px;
}
.contact-snippet img {
  width: 21px;
  height: 21px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.contact-snippet a {
  color: #6FCBC1;
  font-weight: 700;
}
.contact-snippet a:hover {
  color: #fff;
  text-decoration: underline;
}


/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #6FCBC1;
  color: #212E40;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  box-shadow: 0 -3px 32px 0 rgba(33,46,64,0.16);
  font-size: 1rem;
  gap: 36px;
  animation: cookieBannerIn .7s cubic-bezier(.6,.03,.31,.98);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%);} to { transform: translateY(0);}
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 9px 24px;
  border-radius: 22px;
  border: 2px solid #fff;
  background: #212E40;
  color: #fff;
  font-size: 1rem;
  transition: background .16s, color .16s, border-color .16s;
  margin-left: 0;
}
.cookie-consent-banner button.cookie-settings {
  background: transparent;
  color: #212E40;
  border-color: #212E40;
}
.cookie-consent-banner button.cookie-settings:hover,
.cookie-consent-banner button.cookie-settings:focus {
  background: #212E40;
  color: #fff;
  border-color: #fff;
}
.cookie-consent-banner button.accept {
  background: #fff;
  color: #212E40;
  border-color: #212E40;
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #212E40;
  color: #fff;
}
.cookie-consent-banner button.reject {
  background: #fff;
  color: #6FCBC1;
  border-color: #fff;
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
  background: #212E40;
  color: #fff;
}

/* Cookie modal overlay & popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,46,64,0.74);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieOverlayIn .44s;
}
@keyframes cookieOverlayIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  width: 90vw;
  max-width: 420px;
  border-radius: 20px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 12px 56px 0 rgba(33,46,64,0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: cookieModalIn .43s cubic-bezier(.57,.09,.33,.99);
  position: relative;
}
@keyframes cookieModalIn {
  from {transform: translateY(44px) scale(.93); opacity:0;} to {transform:none; opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #212E40;
  margin-bottom: 10px;
}
.cookie-categories {
  margin: 10px 0 22px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
}
.cookie-category label {
  font-weight: 600;
  color: #212E40;
}
.cookie-category input[type='checkbox'] {
  width: 24px;
  height: 24px;
  accent-color: #6FCBC1;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 16px;
  top: 14px;
  background: none;
  color: #212E40;
  border: none;
  font-size: 1.5rem;
  font-weight: bolder;
  cursor: pointer;
  z-index: 10;
  transition: color .16s;
}
.cookie-modal .close-cookie-modal:focus, .cookie-modal .close-cookie-modal:hover {
  color: #6FCBC1;
}

/* Cookie essential always enabled */
.cookie-category.essential label {
  opacity: 0.53;
}
.cookie-category.essential input[type='checkbox'] {
  pointer-events: none;
}

/* ================
   GENERAL RESPONSIVE
   ================ */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .content-grid { flex-direction: column; gap: 24px; }
  .card-container { flex-direction: column; gap: 24px; }
  .footer-nav, .contact-snippet { font-size: .98rem; }
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 22px; }
  .testimonial-list { flex-direction: column; }
  .footer-nav, .footer-social, .contact-snippet { flex: 1 1 100%; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  section, .section { padding: 30px 8px; margin-bottom: 42px; }
  h1 { font-size: 1.37rem; margin-bottom: 16px; }
  h2 { font-size: 1.11rem; margin-bottom: 14px; }
  h3 { font-size: 1rem; }
  .footer-nav, .contact-snippet, .footer-social { gap: 8px; }
  .footer-nav { margin-bottom: 14px; }
  .footer-social { gap: 14px; }
  footer .container { flex-direction: column; gap: 22px; }
}
@media (max-width: 600px) {
  .hero-section { padding: 28px 0 16px 0; }
  .feature, .testimonial-card, .faq-item {
    padding: 14px 10px;
    border-radius: 13px;
  }
  .section {
    margin-bottom: 28px;
    padding: 16px 8px;
    border-radius: 15px;
  }
  .feature-grid, .testimonial-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu {
    padding: 0;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 7px;
    font-size: .98rem;
  }
  .cookie-modal {
    padding: 22px 11px 18px 11px;
    border-radius: 12px;
  }
}
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =====================
   SPACING & UTILITIES
   ===================== */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { flex-direction: column !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.rounded { border-radius: 18px; }

/* =====================
   FORM ELEMENTS (future-proof)
   ===================== */
input, select, textarea {
  background: #fff;
  padding: 12px 16px;
  border: 2px solid #6FCBC1;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #212E40;
  transition: border-color 0.13s, box-shadow 0.11s;
}
input:focus, textarea:focus, select:focus {
  border-color: #212E40;
  outline: none;
}

/* ===============
  MISCELLANEOUS
  =============== */
::-webkit-scrollbar { width: 8px; background: #F5F6FA; }
::-webkit-scrollbar-thumb { background: #6FCBC1cc; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #212E40bb;}

/* Decorative geometric accent (for possible use as .geo-accent) */
.geo-accent {
  background: #6FCBC1 !important;
  border-radius: 49% 51% 50% 50%;
  width: 50px; height: 50px;
  position: absolute;
  z-index: 0;
  opacity: .12;
  display: block;
}

/* END */
