/* ===============================
   CSS RESET & BASELINE
=============================== */
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%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F6F6F5;
  color: #22313F;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-feature-settings: "liga" 1;
  letter-spacing: 0.01em;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.20s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #22313F;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 28px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.25rem; margin-bottom: 16px; line-height: 1.22; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 18px;
  line-height: 1.7;
}
strong, b { font-weight: 700; color: #22313F; }

/* ===============================
   BRAND COLORS & FONTS
=============================== */
:root {
  --color-primary: #22313F;
  --color-secondary: #B6BFBF;
  --color-accent: #EAC77B;
  --color-bg: #F6F6F5;
  --color-text: #22313F;
  --color-muted: #DEDED9;
  --font-display: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  --font-body: 'Roboto', Georgia, 'Times New Roman', Times, serif;
}

/* ===============================
   CONTAINER & GENERAL LAYOUT
=============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,49,63,0.06);
  padding: 40px 32px;
  margin-bottom: 40px;
}

@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 28px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 20px 4vw;
    margin-bottom: 32px;
  }
}

/* ===============================
   HEADER: BRANDING & NAVIGATION
=============================== */
header {
  background: #fff;
  border-bottom: 1.5px solid var(--color-muted);
  box-shadow: 0 4px 14px rgba(34,49,63,0.07);
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
  gap: 16px;
}
.branding {
  display: flex;
  align-items: center;
  gap: 20px;
}
.branding img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}
.tagline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-secondary);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-left: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.main-nav a {
  padding: 7px 8px;
  border-radius: 3px;
  color: var(--color-primary);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-muted);
  color: var(--color-accent);
}
.main-nav .cta-button {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 19px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1.05rem;
  margin-left: 10px;
  box-shadow: 0 1px 6px rgba(34,49,63,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.15s;
}
.main-nav .cta-button:hover,
.main-nav .cta-button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
}

/* ===============================
   MOBILE MENU
=============================== */
.mobile-menu-toggle {
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: background 0.13s, color 0.17s, box-shadow 0.13s;
  z-index: 1202;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34,49,63, 0.92);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.46,.13,.46,1.16);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 28px 32px 0 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.mobile-nav {
  width: 100vw;
  margin-top: 64px;
  padding: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-display);
  padding: 18px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background 0.13s, color 0.14s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(255,255,255,0.08);
}
@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.10rem;
    padding: 14px 20px;
  }
  .mobile-menu-close {
    margin-right: 16px;
    margin-top: 20px;
  }
}

/* ===============================
   SECTIONS & SPACING
=============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 24px 3vw;
    margin-bottom: 44px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(34,49,63,0.06);
  transition: box-shadow 0.21s, transform 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(34,49,63,0.18);
  transform: translateY(-2px) 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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: #F6F6F5;
  border-left: 7px solid var(--color-accent);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px rgba(34,49,63,0.08);
}
.testimonial-card p {
  margin-bottom: 0;
  color: #22313F;
  font-size: 1.10rem;
  line-height: 1.66;
  font-style: italic;
  font-family: var(--font-display);
}
.testimonial-card span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #374151;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .testimonial-card {
    padding: 18px 12px;
    gap: 14px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid var(--color-muted);
  box-shadow: 0 1.5px 8px rgba(34,49,63,0.07);
  padding: 24px 18px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 22px rgba(34,49,63,0.12);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img {
  width: 40px;
  margin-bottom: 12px;
}

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

/* ===============================
   BUTTONS & LINKS
=============================== */
.cta-button {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 21px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 13px 30px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(34,49,63,0.10);
  transition: box-shadow 0.17s, background 0.18s, color 0.18s, transform 0.12s;
  margin-top: 16px;
  margin-bottom: 6px;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(34,49,63,0.22);
  transform: translateY(-1.5px) scale(1.03);
}
button, input[type="button"] {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.13s, transform 0.12s;
}
button:focus { outline: 2px solid var(--color-accent); }

/* ===============================
   FORMS & CONTACT INFO
=============================== */
.contact-info {
  font-size: 1rem;
  color: #404e57;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.contact-info img {
  display: inline-block;
  width: 19px;
  margin-right: 9px;
  vertical-align: middle;
}

/* ===============================
   ARTICLE/POST TEASER (BLOG)
=============================== */
.article-teaser {
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  padding: 18px 20px 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(34,49,63,0.07);
  transition: box-shadow 0.13s, transform 0.13s;
}
.article-teaser h3 {
  margin-bottom: 10px;
}
.article-teaser:hover, .article-teaser:focus-within {
  box-shadow: 0 5px 16px rgba(34,49,63,0.11);
  transform: translateY(-2px) scale(1.012);
}

/* ===============================
   FOOTER STYLING
=============================== */
footer {
  background: #fff;
  border-top: 1.5px solid var(--color-muted);
  padding: 36px 0 16px 0;
  margin-top: 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 2px;
}
.footer-links a {
  color: var(--color-primary);
  opacity: 0.88;
  font-size: 1rem;
  transition: color 0.16s, opacity 0.13s;
}
.footer-links a:hover { color: var(--color-accent); opacity: 1; }
.social-media-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-media-links img {
  width: 26px;
  height: 26px;
  filter: grayscale(50%) contrast(1.1);
  opacity: 0.77;
  transition: filter 0.17s, opacity 0.16s, transform 0.13s;
}
.social-media-links a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.14);
}
.footer .contact-info {
  font-size: 0.99rem;
  color: #545e66;
  font-family: var(--font-body);
}
.legal-info {
  font-size: 0.92rem;
  color: #96918b;
  margin-top: 4px;
}
@media (max-width: 700px) {
  footer .container { gap: 8px; }
  .footer-links { gap: 10px; }
  .social-media-links img { width: 22px; height: 22px; }
}

/* ===============================
   COOKIE CONSENT BANNER/MODAL
=============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -5px 40px rgba(34,49,63,0.14);
  border-top: 2px solid var(--color-muted);
  z-index: 2020;
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
}
.cookie-banner p {
  flex: 1 1 60%;
  color: #374151;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--color-muted);
  color: var(--color-primary);
  border: none;
  padding: 10px 26px;
  border-radius: 17px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner button.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner button.reject {
  background: #e2e2e1;
  color: var(--color-primary);
}
.cookie-banner button.settings {
  background: none;
  color: var(--color-accent);
  padding: 8px 20px;
  border: 1px solid var(--color-accent);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  box-shadow: 0 2px 15px rgba(34,49,63,0.13);
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 18px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner button { width: 100%; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,63,0.46);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.46,.13,.46,1.16);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-text);
  padding: 36px 32px 28px 32px;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(34,49,63,0.30);
  min-width: 320px;
  max-width: 92vw;
  z-index: 2112;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-modal-content .cookie-category label {
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 21px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.13s, background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
  background: var(--color-muted);
}
.cookie-modal-content .actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #e4e4df;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle.on {
  background: var(--color-accent);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.15s;
}
.cookie-toggle.on:before {
  left: 16px;
}
.cookie-toggle[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
=============================== */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.08rem; }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .content-wrapper {
    padding: 14px 2vw;
  }
  section {
    padding: 16px 2vw;
  }
  .testimonial-card {
    padding: 12px 7px;
  }
  .feature-grid > div {
    padding: 12px 6px;
  }
}

/* ===============================
   LISTS & TYPOGRAPHY
=============================== */
ul, ol {
  margin-bottom: 18px;
  padding-left: 24px;
  line-height: 1.7;
}
ul li {
  list-style: disc inside;
  margin-bottom: 10px;
}
ol li {
  list-style: decimal inside;
  margin-bottom: 10px;
}

/* ===============================
   SPACING RULES FOR ELEMENTS
=============================== */
.card-container > * { margin-bottom: 20px; }
.feature-grid > * { margin-bottom: 20px; }
.content-grid > * { margin-bottom: 20px; }
.text-image-section > * { margin-bottom: 20px; }
.testimonial-card + .testimonial-card { margin-top: 20px; }
.content-wrapper > * + * { margin-top: 16px; }

/* ===============================
   MISC VISUALS (BORDERS, EFFECTS)
=============================== */
.card, .feature-grid > div, .content-wrapper, .article-teaser {
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,49,63,0.06);
}

::-webkit-scrollbar { width: 10px; background: #EAEAEA; }
::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 8px; }

/* ===============================
   MICRO-INTERACTIONS & TRANSITIONS
=============================== */
a, .cta-button, button, .feature-grid > div, .card, .article-teaser, .social-media-links img {
  transition: background 0.15s, color 0.14s, box-shadow 0.17s, transform 0.15s, opacity 0.12s;
}

/* ===============================
   ACCESSIBILITY STYLES
=============================== */
a:focus, .cta-button:focus, button:focus, input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  background: #f6edd6;
}

/* ===============================
   HIDE/SHOW CLASSES FOR JS
=============================== */
.hide { display: none !important; }

/* END OF STYLE.CS */
