/* Glimmer Boulder Minimalist CSS (Mobile-first, Flexbox-only) */
/* --- CSS RESET & BASE TYPOGRAPHY --- */
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, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F2F5F7;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F5F7;
  color: #232D3E;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #54B3A8;
  outline-offset: 2px;
}

/* --- CONTAINERS & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(35,45,62,0.07);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.card-container, .features-grid, .content-grid, .faq-accordion, .text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(35,45,62,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F2F5F7;
  padding: 24px 20px;
  border-radius: 14px;
  min-width: 230px;
  box-shadow: 0 2px 8px 0 rgba(35,45,62,0.04);
  flex: 1 1 230px;
  transition: box-shadow 0.22s;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 24px 0 rgba(35,45,62,0.13);
}

/* --- HEADER/NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E4E6EA;
  box-shadow: 0 1px 8px 0 rgba(35,45,62,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: none;
}
/* Show desktop nav on larger screens */
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: auto;
    margin-right: 24px;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.06rem;
    padding: 8px 0;
    color: #232D3E;
    opacity: 0.88;
    transition: color 0.18s;
    border-radius: 4px;
  }
  .main-nav a:hover,
  .main-nav a:focus {
    color: #54B3A8;
    background: #F2F5F7;
  }
  .cta-main {
    font-weight: 600;
    background: #54B3A8;
    color: #fff !important;
    padding: 9px 18px !important;
    border-radius: 6px;
    margin-left: 12px;
    box-shadow: 0 2px 10px 0 rgba(84,179,168,0.13);
    transition: background 0.22s, color 0.22s;
    border: none;
    letter-spacing: 0.02em;
  }
  .cta-main:hover,
  .cta-main:focus {
    background: #232D3E;
    color: #fff !important;
  }
  
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 2rem;
  margin-right: 20px;
  color: #232D3E;
  cursor: pointer;
  z-index: 101;
  transition: background 0.14s;
  padding: 4px 9px;
  border-radius: 7px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2F5F7;
}

.mobile-menu {
  position: fixed;
  top: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(35,45,62,0.22);
  z-index: 999;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-120vw);
  transition: transform 0.32s cubic-bezier(.61,.01,.92,.48);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #232D3E;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background 0.19s;
  border-radius: 6px;
  padding: 3px 9px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2F5F7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 12px 0;
  color: #232D3E;
  transition: color 0.16s;
  border-radius: 4px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #54B3A8;
  background: #F2F5F7;
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232D3E;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; margin-bottom: 18px; }
h2 { font-size: 1.54rem; margin-bottom: 14px; }
h3 { font-size: 1.18rem; margin-bottom: 10px; font-weight: 600; }
p, li {
  font-size: 1rem;
  color: #232D3E;
  opacity: 0.92;
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
.section ul, .section ol, .text-section ul, .text-section ol {
  margin-left: 0;
  padding-left: 18px;
  margin-bottom: 0;
}
.section ul li, .text-section ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* --- BUTTONS & CALL TO ACTIONS --- */
.cta-button, .cta-main, .mobile-nav a.cta-main {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  background: #54B3A8;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 28px;
  display: inline-block;
  box-shadow: 0 2px 10px 0 rgba(84,179,168,0.12);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.20s, color 0.18s, box-shadow 0.17s, transform 0.13s;
  text-align: center;
  letter-spacing: 0.01em;
}
.cta-button:hover,
.cta-main:hover,
.cta-button:focus,
.cta-main:focus {
  background: #232D3E;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(35,45,62,0.14);
  transform: translateY(-2.5px) scale(1.01);
}

/* --- CARDS/SECTIONS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #F2F5F7;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(35,45,62,0.08);
  margin-bottom: 24px;
}
.testimonial-card p {
  color: #232D3E;
  font-size: 1.05rem;
  margin-bottom: 6px;
  opacity: 1;
}
.testimonial-card span {
  color: #54B3A8;
  font-size: 0.99rem;
  font-weight: 500;
  opacity: 0.90;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F2F5F7;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(35,45,62,0.05);
  cursor: pointer;
}
.faq-item h3 {
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #E4E6EA;
  padding: 36px 20px 20px 20px;
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
footer a img {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 19px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #232D3E;
  opacity: 0.77;
  font-size: 0.97rem;
  transition: color 0.15s;
  padding: 7px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #54B3A8;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  color: #232D3E;
  font-size: 0.97rem;
  opacity: 0.88;
}
.footer-contact img {
  display: inline;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  vertical-align: middle;
}
address {
  font-style: normal;
  margin-bottom: 3px;
}

/* --- FORMS (if present) --- */
input, textarea, select {
  width: 100%;
  padding: 10px 13px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 7px;
  border: 1px solid #E1E4EA;
  margin-bottom: 14px;
  background: #F2F5F7;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1px solid #54B3A8;
  outline: none;
}

/* --- UTILS & ANIMATION CLASSES --- */
.hide {
  display: none !important;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (min-width: 600px) {
  .container {
    padding: 0 40px;
  }
  .feature-item {
    min-width: 270px;
    padding: 30px 24px;
  }
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 42px;
  }
  .section {
    padding: 60px 40px;
  }
  .testimonial-card {
    padding: 32px 30px;
    gap: 19px;
  }
  .card {
    padding: 42px 36px;
  }
  .footer-contact {
    flex-direction: row;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
  .faq-accordion {
    gap: 28px;
  }
}
@media (min-width: 992px) {
  .features-grid {
    flex-direction: row;
  }
  .card-container, .content-grid {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  footer {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232D3E;
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -2px 24px 0 rgba(35,45,62,0.19);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  animation: fadeInUp 0.5s cubic-bezier(.46,.8,.27,1.01);
}
@keyframes fadeInUp {
  from {transform: translateY(70px); opacity:0;}
  to   {transform: translateY(0);   opacity:1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 7px;
  padding: 8px 22px;
  margin-right: 0;
  margin-bottom: 2px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner .cookie-accept {
  background: #54B3A8;
  color: #fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #339487;
}
.cookie-banner .cookie-settings {
  background: #F2F5F7;
  color: #232D3E;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E4E6EA;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #232D3E;
  border: 1px solid #E4E6EA;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #f8fafd;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,45,62,0.32);
  z-index: 1300;
  align-items: center;
  justify-content: center;
  animation: fadeModalBg 0.38s cubic-bezier(.26,.81,.64,1.02);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeModalBg {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #232D3E;
  padding: 36px 24px 28px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 rgba(35,45,62,0.21);
  display: flex;
  flex-direction: column;
  gap: 23px;
  min-width: 300px;
  max-width: 98vw;
  max-height: 90vh;
  animation: scaleIn .32s cubic-bezier(.36,.66,.23,.93);
}
@keyframes scaleIn {
  from { opacity:0; transform: scale(0.90); }
  to   { opacity:1; transform: scale(1.0); }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #232D3E;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 500;
  color: #232D3E;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 0px;
  align-self: flex-end;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E1E4EA;
  border-radius: 13px;
  transition: background 0.18s;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: #54B3A8;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}

/* --- MISC STYLES --- */
::-webkit-scrollbar {
  width: 7px;
  background: #F2F5F7;
}
::-webkit-scrollbar-thumb {
  background: #E4E6EA;
  border-radius: 8px;
}

/* --- SELECTION COLOR --- */
::selection {
  background: #A7DBD0;
  color: #232D3E;
}

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

/* --- SPECIFIC CLASSES FROM HTML: for safety --- */
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  padding-left: 20px;
}

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