/* Reset and 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, main, 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;
}
/* HTML5 display-role fix for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAF9FA;
  min-height: 100vh;
  color: #232C33;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2F4858;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D8A047;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  background: none;
}

/* Font stacks and soft pastel color palette -----------------------------------------------------------*/
:root {
  --color-primary: #2F4858;
  --color-secondary: #F8F8F8;
  --color-accent: #D8A047;
  --color-accent-soft: #FAE9CF;
  --color-bg: #FAF9FA;
  --color-bg-card: #FFFFFF;
  --color-bg-secondary: #F8F6FF;
  --color-bg-footer: #F5F8FB;
  --color-neutral: #A5B6C5;
  --color-border: #E3E6EC;
  --color-error: #FBBDD8;
  --color-success: #BAFCDD;
  --color-info: #B1E3FA;
  --color-pastel-pink: #F9EAEA;
  --color-pastel-green: #E9F7F1;
  --color-pastel-blue: #E5F0FF;
  --color-font: #232C33;
  --color-font-soft: #424a4d;
  --box-radius: 22px;
  --shadow-card: 0 2px 12px 0 rgba(180,180,200,0.10), 0 1.5px 2.5px 0 rgba(200,180,200,0.03);
  --shadow-btn: 0 3px 11px 0 rgba(160,160,180,0.09);
  --font-display: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Typography ----------------------------------------------------------------------------------------*/
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; font-weight: 700; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 12px; }
h4 { font-size: 1rem; font-weight: 500; }
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--color-font-soft);
}
.subheadline {
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 1.21rem;
  opacity: 0.85;
}
strong, b { font-weight: bold; }

/* Utilities -----------------------------------------------------------------------------------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-secondary);
  border-radius: var(--box-radius);
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 14px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}

/* Header & Navigation -------------------------------------------------------------------------------*/
.header {
  background: linear-gradient(90deg, #F9EAEA 0%, var(--color-bg-footer) 100%);
  box-shadow: 0 4px 18px 0 rgba(220,210,245,0.08);
  position: relative;
  z-index: 50;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 85px;
}
.header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1.07rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 4px 8px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}
.cta-btn {
  display: inline-block;
  padding: 0.68em 2.1em;
  background: var(--color-accent);
  color: #fff;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: var(--shadow-btn);
  transition: background 0.18s, color 0.22s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  margin-right: 12px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #BA7810;
  color: #fff;
  box-shadow: 0 5px 17px rgba(200,180,100,0.11);
}

/* Mobile Menu --------------------------------------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
  border: none;
  margin-left: 8px;
  cursor: pointer;
  z-index: 112;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #BA7810;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(250, 249, 250, 0.96);
  box-shadow: 0 6px 32px rgba(80,80,110,0.10);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(0.5,0,0.2,1), opacity 0.25s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px 0 0 20px;
  cursor: pointer;
  border: 2px solid #F9EAEA;
  box-shadow: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F9EAEA;
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0 0 40px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color 0.18s, background 0.16s;
  padding: 6px 8px 6px 0;
  border-radius: 8px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9EAEA;
  color: var(--color-accent);
}

@media (max-width:992px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hero & Section Patterns ---------------------------------------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0px;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 25px 0px;
    margin-bottom: 38px;
  }
}

/* Card Container and Cards --------------------------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 250px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px rgba(180,170,200,0.14), 0 3px 14px 0 rgba(200,180,200,0.11);
  transform: translateY(-2px) scale(1.035);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Testimonials -------------------------------------------------------------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--box-radius);
  background: var(--color-pastel-blue);
  box-shadow: 0 2px 12px rgba(190,190,200,0.10);
  margin-bottom: 20px;
  margin-top: 8px;
  color: #233;
  font-style: italic;
  flex-wrap: wrap;
  font-size: 1.08rem;
  border: 1px solid var(--color-border);
}
.testimonial-card strong {
  color: var(--color-accent);
  font-style: normal;
  font-size: 1rem;
  margin-left: 20px;
}
.testimonial-card p {
  color: var(--color-font);
  margin-bottom: 0;
}

/* Feature & List Styling ---------------------------------------------------------------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-pastel-green);
  padding: 20px 24px;
  border-radius: var(--box-radius);
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(180,180,180,0.07);
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 0px;
}
ul li, ol li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 22px;
  color: var(--color-font-soft);
  line-height: 1.7;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 6px;
  opacity: 0.12;
}
.price-tag {
  background: #FBEDD1;
  color: #A06709;
  font-size: 0.99rem;
  border-radius: 9px;
  padding: 3px 11px;
  display: inline-block;
  margin-left: 8px;
  font-weight: 600;
}


/* Content Grid & Text-Image Section ----------------------------------------------------------------*/
.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) {
  .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

/* Blog components ----------------------------------------------------------------------------------*/
.blog-tags {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.blog-tags span {
  background: var(--color-pastel-pink);
  color: #BA7810;
  border-radius: 10px;
  font-size: 0.99rem;
  font-family: var(--font-body);
  padding: 4px 12px 5px 11px;
  margin-right: 4px;
  font-weight: 500;
}
.featured-post {
  background: var(--color-pastel-green);
  border-radius: var(--box-radius);
  padding: 22px 18px;
  margin-top: 6px;
  box-shadow: 0 1px 7px rgba(130,200,160,0.08);
}
.featured-post h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
}

/* Contact Map Note/Highlight -----------------------------------------------------------------------*/
.map-note {
  background: var(--color-pastel-blue);
  border-left: 4px solid var(--color-accent);
  padding: 13px 19px;
  border-radius: 13px;
  color: #465052;
  font-size: 0.98rem;
  margin-top: 20px;
}

/* Footer ------------------------------------------------------------------------------------------*/
.footer {
  background: var(--color-bg-footer);
  border-top: 1.5px solid var(--color-border);
  padding: 43px 0 31px 0;
  color: var(--color-neutral);
  font-size: 1.01rem;
  box-shadow: 0 1.7px 0px #ECE7FF;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 170px;
  margin-right: 44px;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 8px;
}
.tagline {
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: #9e8faf;
  opacity: 0.79;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #3d4f5c;
  font-size: 1.01rem;
  font-weight: 500;
  transition: color 0.19s;
  opacity: 0.85;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-info {
  margin-left: auto;
  color: #98a6b3;
  font-size: 0.97rem;
  font-weight: 400;
}
@media (max-width: 860px) {
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-nav {
    gap: 18px;
    margin-bottom: 10px;
  }
}

/* Cookie Consent Banner -----------------------------------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6000;
  background: var(--color-bg-footer);
  color: var(--color-font);
  box-shadow: 0 -1px 18px rgba(130,100,170,0.08);
  border-top: 2.8px solid var(--color-pastel-pink);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 24px;
  gap: 20px;
  font-size: 1.07rem;
  transition: transform 0.41s cubic-bezier(0.7,0,0.2,1), opacity 0.31s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
}
.cookie-consent-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-actions {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn {
  padding: 7px 19px;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-accent);
  color: #FFF;
  margin-left: 0;
  transition: background 0.15s, box-shadow 0.19s;
  box-shadow: 0 2px 8px rgba(160,130,40,0.10);
}
.cookie-btn.reject {
  background: #E3E6EC;
  color: #7A5656;
  font-weight: 500;
  border: 1px solid #F3EADC;
}
.cookie-btn.settings {
  background: var(--color-pastel-blue);
  color: var(--color-accent);
  border: 1px solid var(--color-border);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #BA7810;
  color: #fff;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #FBBDD8;
  color: #7A5656;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #E5F0FF;
  color: #A06709;
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8em;
    padding: 14px 8px 14px 8px;
    font-size: 0.96rem;
  }
  .cookie-banner-actions { margin: 0; gap: 9px; }
}

/* Cookie Modal Dialog -------------------------------------------------------------------------------*/
.cookie-modal {
  position: fixed;
  z-index: 6500;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,44,51,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.76,0,.33,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: var(--color-bg-card);
  border-radius: 20px;
  box-shadow: 0 9px 40px rgba(220,170,120,0.19);
  padding: 32px 29px 32px 29px;
  max-width: 400px;
  width: 90vw;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1.1px solid var(--color-bg-footer);
  position: relative;
}
.cookie-modal-dialog h3 {
  color: var(--color-primary);
  margin-bottom: 7px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 11px 0;
  padding: 8px 0;
}
.cookie-modal-category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  border: 1.5px solid #DEC0A3;
  border-radius: 6px;
}
.cookie-modal-category .category-label {
  font-size: 1.08rem;
  color: var(--color-primary);
  font-family: var(--font-body);
}
.cookie-modal-category.essential .category-label {
  font-weight: 600; opacity: 0.7;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #F9EAEA;
  color: var(--color-accent);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2em;
  cursor: pointer;
  border: none;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-accent-soft);
  color: #733901;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}

/* Responsive adjustments ---------------------------------------------------------------------------*/
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .footer .container { flex-direction: column; gap: 18px; }
  .footer-nav { flex-direction: column; gap: 0px; }
  .footer-brand img { height: 34px; }
  .card, .testimonial-card, .feature-item { padding: 19px 10px; }
  .blog-tags { flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
}

/* Animations & Microinteractions -------------------------------------------------------------------*/
.cta-btn, .card, .cookie-btn, .footer-nav a, .main-nav a, .mobile-nav a, .testimonial-card, .feature-item {
  transition-property: box-shadow, background, color, transform, border;
  transition-duration: 0.16s, 0.20s, 0.17s;
  transition-timing-function: cubic-bezier(.47,.2,.36,1);
}
.card:hover, .cta-btn:hover, .footer-nav a:hover, .main-nav a:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 6px 26px rgba(180,180,200,0.20), 0 2px 14px 0 rgba(200,180,200,0.09);
}

/* Spacing for Main Content and Sections ------------------------------------------------------------*/
main { padding: 0 0 50px 0; }
section + section { margin-top: 28px; }

/* Misc Helper Classes ------------------------------------------------------------------------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-20 { margin-top: 20px; }
.hide { display: none !important; }
.show { display: block !important; }

/* Accessibility & Focus states ---------------------------------------------------------------------*/
a, button, .mobile-nav a, .cookie-btn, .cookie-modal-close {
  outline: none;
}
a:focus-visible, button:focus-visible, .mobile-nav a:focus-visible, .cookie-btn:focus-visible, .cookie-modal-close:focus-visible {
  box-shadow: 0 0 0 2px var(--color-accent-soft), 0 0 1px 4px var(--color-accent);
}

/* Scrollbar styling --------------------------------------------------------------------------------*/
body::-webkit-scrollbar {
  width: 9px;
  background: #F9EAEA;
  border-radius: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #E5F0FF;
  border-radius: 9px;
}

/* Custom selection color (pastel) ------------------------------------------------------------------*/
::selection {
  background: #F9EAEA;
}

/* End of CSS */
