/* RESET & BASELINE NORMALIZATION */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #f9fafb;
  color: #23395d;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #3da182;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #23395d;
  text-decoration: underline;
}
ul,
ol {
  margin: 0 0 1.6em 1.5em;
  padding: 0;
}
li {
  margin-bottom: 0.4em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #23395d;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  background: #e3f5ee;
  color: #23395d;
  border-left: 5px solid #3da182;
  padding: 14px 24px;
  margin: 24px 0 16px 0;
  border-radius: 0 18px 18px 0;
}
address {
  font-style: normal;
  margin-bottom: 18px;
  color: #23395d;
}
strong {
  font-weight: 700;
}
input[type="search"] {
  padding: 8px 16px;
  border-radius: 17px;
  border: 1.5px solid #3da182;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #23395d;
  margin-bottom: 1em;
  outline: none;
  transition: box-shadow 0.2s, border 0.2s;
  box-shadow: 0 1px 7px 0 rgba(80,180,170,0.04);
}
input[type="search"]:focus {
  border-color: #23395d;
  box-shadow: 0 0 0 2px rgba(61,161,130,0.12);
}
/* LAYOUT SPACING & FLEXBOX PATTERNS */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f9fafb;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(35,57,93,0.07);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: linear-gradient(135deg, #e3f5ee 68%, #fff 100%);
  border-radius: 24px;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 340px;
  box-shadow: 0 2px 16px rgba(61,161,130,0.12);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(35,57,93,0.15);
  transform: translateY(-5px) scale(1.02);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 9px 0 rgba(35,57,93,0.13);
  margin-bottom: 20px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 5px solid #3da182;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(61,161,130,0.14);
  transform: translateY(-3px) scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.categories-filter {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin: 8px 0 14px 0;
}
.categories-filter strong {
  font-size: 1rem;
  margin-right: 4px;
  color: #23395d;
}
.categories-filter a {
  background: #3da182;
  color: #fff;
  padding: 4px 14px;
  border-radius: 13px;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 2px;
  transition: background 0.2s, color 0.2s;
}
.categories-filter a:hover {
  background: #23395d;
  color: #fff;
}

/* NAVIGATION */
nav {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 13px 0 13px 0;
  box-shadow: 0 4px 18px rgba(35,57,93,0.07);
  z-index: 102;
  position: relative;
}
nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23395d;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 13px;
  border-radius: 16px;
  transition: background 0.19s, color 0.19s;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
nav > a img {
  height: 36px;
  margin-right: 1px;
  display: inline-block;
}
nav > a:hover, nav > a:focus {
  background: #3da182;
  color: #fff;
}
footer nav {
  background: transparent;
  box-shadow: none;
  margin-top: 10px;
  gap: 18px;
  padding: 0;
  justify-content: flex-start;
}
footer nav > a {
  color: #3da182;
  font-size: 0.99rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 10px;
  background: #e3f5ee;
}
footer nav > a:hover,
footer nav > a:focus {
  background: #23395d;
  color: #fff;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  background: #3da182;
  color: #fff;
  margin: 14px 0 6px 0;
  padding: 13px 32px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s, transform 0.19s;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(61,161,130,0.12);
}
.cta.primary {
  background: #23395d;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #23395d;
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(35,57,93,0.13);
  transform: scale(1.025);
}

/* GENERAL SPACING */
main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  margin-top: 18px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
}

/* ICONS INSIDE LISTS */
ul li img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  top: 2px;
}

/* FOOTER */
footer {
  background: #23395d;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 18px 23px 18px;
  margin-top: 32px;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -8px 32px rgba(61,161,130,0.07);
}
footer img {
  height: 32px;
}
footer div {
  font-size: 0.93rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 9px;
}

/* TABLES, FORMS, ETC - Not present, but basic styling */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 11px 8px;
  border-bottom: 1px solid #e3f5ee;
}

/* MICRO-INTERACTIONS */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  transition: background 0.17s, color 0.17s, transform 0.17s, box-shadow 0.18s;
}
button:active,
.cta:active,
.mobile-menu-toggle:active {
  transform: scale(0.98);
}

/* CREATIVE ARTISTIC ACCENTS */
.section {
  background: #fff;
  box-shadow: 0 7px 29px rgba(61,161,130,0.14);
  border: 1.5px solid #e3f5ee;
}
.content-wrapper {
  border-radius: 18px;
  padding: 10px 0;
}
.testimonial-card::after {
  content: "\201C";
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3da182;
  font-size: 4.1rem;
  opacity: 0.12;
  position: absolute;
  right: 22px;
  top: 8px;
  pointer-events: none;
  z-index: 0;
}
.testimonial-card blockquote {
  background: none;
  border-left: none;
  margin: 0;
  padding: 0 8px 0 0;
  font-size: 1.125rem;
  font-style: italic;
  color: #23395d;
  z-index: 2;
}
.testimonial-card > div {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #3da182;
  z-index: 2;
}

/* BUTTONS INSIDE FORMS/COOKIE */
button, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: 17px;
  border: none;
  background: #3da182;
  color: #fff;
  cursor: pointer;
  margin-right: 13px;
  box-shadow: 0 1px 7px 0 rgba(61,161,130,0.07);
  transition: background 0.15s, color 0.15s;
}
button.primary, .cookie-btn.primary {
  background: #23395d;
}
button:disabled, .cookie-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
button:hover, .cookie-btn:hover,
button:focus, .cookie-btn:focus {
  background: #23395d;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #23395d;
  color: #fff;
  font-size: 2.1rem;
  padding: 8px 15px;
  border-radius: 16px;
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 120;
  border: none;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .mobile-menu-toggle {
    right: 8px;
    top: 10px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #23395d;
  color: #fff;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  box-shadow: -8px 0 18px rgba(61,161,130,0.22);
  transform: translateX(0);
  visibility: hidden;
  pointer-events: none;
  transition: left 0.35s cubic-bezier(0.6,0,0.25,1), visibility 0.28s, opacity 0.28s;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition: left 0.28s cubic-bezier(0.7,0,0.42,1), visible 0.19s, opacity 0.16s;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0 0;
  background: none;
  color: #fff;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2015;
  border-radius: 9px;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #3da182;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  width: 100%;
  padding: 0 38px;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #3da182;
  color: #fff;
  padding-left: 8px;
}

/* Only show burger icon, hide main nav on mobile */
@media (max-width: 992px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
/* Mobile Menu Full Screen */
@media (max-width: 600px) {
  .mobile-menu {
    padding-left: 0;
  }
  .mobile-nav {
    padding: 0 18px;
    gap: 17px;
  }
  .mobile-menu-close {
    margin: 16px 18px 0 0;
  }
}

/* COOKIE CONSENT BANNER (bottom fixed) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23395d;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  padding: 22px 14px 22px 14px;
  z-index: 3000;
  box-shadow: 0 -5px 21px rgba(35,57,93,0.16);
  transition: transform 0.33s cubic-bezier(0.7,0,0.34,1), opacity 0.22s;
  border-radius: 24px 24px 0 0;
  opacity: 1;
  visibility: visible;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 400px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #3da182;
  border: none;
  border-radius: 13px;
  color: #fff;
  padding: 9px 22px;
  box-shadow: 0 1px 4px 0 rgba(61,161,130,0.14);
  margin-right: 0;
  margin-left: 0;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-btn.primary {
  background: #fff;
  color: #23395d;
  font-weight: 600;
}
.cookie-btn.primary:hover {
  background: #e3f5ee;
  color: #23395d;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #23395d;
  color: #fff;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px 14px 8px;
    align-items: stretch;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3010;
  width: 100vw;
  height: 100vh;
  background: rgba(35,57,93,0.78);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s, visibility 0.18s;
}
.cookie-modal.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.23s, visibility 0.11s;
}
.cookie-modal-content {
  background: #fff;
  color: #23395d;
  border-radius: 25px;
  box-shadow: 0 14px 48px rgba(35,57,93,0.18);
  max-width: 410px;
  width: 95vw;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.09rem;
  font-weight: 500;
  margin-bottom: 11px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}
.cookie-modal-content .cookie-category input[type=checkbox] {
  accent-color: #3da182;
  width: 19px;
  height: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: none;
  color: #23395d;
  font-size: 2.1rem;
  border-radius: 8px;
  cursor: pointer;
  padding: 2px 7px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #e3f5ee;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-content .info {
  font-size: 0.98rem;
  background: #e3f5ee;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 790px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  section {
    padding: 24px 8px;
    border-radius: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding: 0 4vw;
  }
  main {
    gap: 24px;
    margin-top: 9px;
    margin-bottom: 22px;
  }
  .section {
    padding: 24px 7px;
    border-radius: 17px;
  }
  .content-wrapper {
    padding: 1px 0;
  }
  .testimonial-card,
  .card {
    padding: 16px 10px 16px 13px;
    border-radius: 14px;
    min-width: 195px;
  }
  .card-container {
    gap: 13px;
  }
  .card {
    flex: 1 1 282px;
  }
  .content-grid,
  .card-container {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .categories-filter {
    gap: 8px;
    margin-bottom: 4px;
  }
}
@media (max-width:470px) {
  h1 {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.03rem;
    margin-bottom: 9px;
  }
  .card,
  .testimonial-card {
    min-width: 140px;
    font-size: 0.97rem;
  }
}

/* SCROLLBARS FOR ARTISTIC TOUCH */
body, .mobile-menu, .cookie-modal {
  scrollbar-color: #3da182 #e3f5ee;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #e3f5ee;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #3da182;
  border-radius: 8px;
}
/* CUSTOM ANIMATIONS */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.section, .card, .testimonial-card {
  animation: fadeSlideIn 0.92s cubic-bezier(0.33,0,0.31,1.01) both;
}
/* VISUAL ARTISTIC COLOR ACCENT ELEMENTS (brand markers) */
.section:after {
  content: '';
  display: block;
  position: absolute;
  left: -28px;
  top: 0;
  width: 7px;
  height: 90%;
  background: #3da182;
  border-radius: 5px;
  opacity: 0.13;
  z-index: 0;
}
@media (max-width: 768px) {
  .section:after {
    display: none;
  }
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 1.7rem; margin-bottom: 13px; }
h3 { font-size: 1.3rem; margin-bottom: 9px; }
body, p, address, li { font-size: 1rem; }
strong { font-weight: 700; color: #23395d; }

/* FOCUS STYLES */
a:focus, .cta:focus, button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus,
.mobile-nav a:focus {
  outline: 2px solid #3da182;
  outline-offset: 2px;
}

/* ARTISTIC UNIVERSAL BACKGROUNDS */
body {
  background: #f9fafb url('../assets/bg-artistic.svg') no-repeat top right;
  background-size: 45vw auto;
}
@media (max-width: 768px) {
  body { background-size: 95vw auto; }
}

/* DARK TEXT ON LIGHT BG IN TESTIMONIALS */
.testimonial-card,
.testimonial-card blockquote {
  color: #23395d;
  background: #fff;
}

/* Z-INDEX STACKING */
nav { z-index: 102; }
.mobile-menu { z-index: 2001; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3010; }

/* FORBIDDEN GRID/COLUMN: NONE PRESENT IN THIS CSS */

/* END OF CSS */
