/* === CSS RESET & BASE === */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F6F6F6;
  color: #2C3869;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #2C3869;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus-visible {
  color: #E5C73C;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
}
strong, b {
  font-weight: 700;
}
hr {
  border: 0;
  height: 2px;
  background: #E5C73C;
  margin: 24px 0;
}

/* === TYPOGRAPHY (creative_artistic) === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #232650;
  font-weight: 800;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(229,199,60,0.11);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 14px;
}
.text-section ul,
.content-wrapper ul {
  margin-bottom: 18px;
}
.content-wrapper ul li {
  margin-bottom: 8px;
}

/* === LAYOUT + SPACING === */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  max-width: 740px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px 0 rgba(44,56,105,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(44,56,105,0.16);
  transform: translateY(-4px) scale(1.015);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(44,56,105,0.09);
  margin-bottom: 22px;
  border-left: 6px solid #E5C73C;
  min-width: 220px;
  max-width: 460px;
}
.testimonial-card span:last-child {
  color: #E5C73C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}
.testimonials h2 {
  flex-basis: 100%;
}

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

/* Custom flex patterns for blog & category grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.category-grid > div {
  flex: 1 1 180px;
  min-width: 180px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 18px;
  box-shadow: 0 4px 18px 0 rgba(229, 199, 60,0.08);
  text-align: center;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.category-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(44,56,105,0.13);
  transform: translateY(-5px) scale(1.025);
}

.address-display {
  background: #fffbe8;
  border-left: 6px solid #E5C73C;
  border-radius: 16px;
  font-weight: bold;
  padding: 18px 22px;
  margin-bottom: 18px;
  font-size: 1.14rem;
  color: #2C3869;
}

/* Hero Section */
.hero {
  background: linear-gradient(97deg,#fffbe8 70%,#E5C73C 100%);
  padding: 50px 0 70px 0;
  position: relative;
}
.hero h1 {
  color: #2C3869;
  font-size: 2.7rem;
  background: linear-gradient(90deg,#2C3869 60%,#E5C73C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Main Navigation */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(44, 56, 105, 0.07);
  z-index: 990;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.main-nav a:not(.cta) {
  color: #2C3869;
  padding: 5px 4px;
  border-radius: 7px;
  transition: background .14s;
}
.main-nav a:not(.cta):hover {
  background: #E5C73C;
  color: #2C3869;
}
.main-nav img {
  width: 46px;
  display: block;
  margin-right: 14px;
}

/* CTA Buttons */
.cta, .main-nav .cta.primary, .cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #2C3869;
  color: #fff;
  padding: 12px 26px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 1.11rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px 0 rgba(44,56,105,0.11);
  border: 0;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background .17s, transform .17s, box-shadow .17s;
  outline: none;
  position: relative;
}
.cta.primary:hover, .main-nav .cta.primary:hover, .cta:hover {
  background: #E5C73C;
  color: #2C3869;
  transform: translateY(-2px) scale(1.026) rotate(-1deg);
  box-shadow: 0 6px 24px 0 rgba(229,199,60,0.29);
}
.cta:active, .main-nav .cta.primary:active {
  background: #232650;
  color: #fff;
}

/* Service price */
.service-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.02rem;
  font-weight: bold;
  background: #E5C73C;
  color: #2C3869;
  border-radius: 19px;
  padding: 3px 16px;
}

/* Features Block (index/about/blog etc.) */
.features, .features .content-wrapper ul, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
}
.features .content-wrapper > h2,
.features .content-wrapper > h3 {
  flex-basis: 100%;
}
.features .content-wrapper ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  gap: 20px;
  box-shadow: 0 2px 13px 0 rgba(44,56,105,0.06);
  min-width: 220px;
  max-width: 370px;
  flex-direction: column;
}
.features .content-wrapper ul li img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.features .content-wrapper ul li div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Blog: featured-posts & recent-articles-list */
.featured-posts, .recent-articles-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0 26px 0;
  padding-left: 17px;
}
.featured-posts li, .recent-articles-list li {
  font-size: 1.05rem;
}

/* Newsletter & Social Links */
.newsletter-signup {
  margin-top: 20px;
  margin-bottom: 12px;
}
.social-media-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-media-links a {
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  transition: box-shadow 0.14s, background .13s;
  box-shadow: 0 2px 9px 0 rgba(44,56,105,0.10);
}
.social-media-links a:hover {
  background: #E5C73C;
  box-shadow: 0 4px 18px 0 rgba(229,199,60,0.17);
}

/* Contact Details & Opening Hours */
.contact-details ul,
.opening-hours {
  margin-bottom: 19px;
}
.contact-details li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  opacity: 0.88;
}
.opening-hours h3 {
  margin-bottom: 8px;
}

.map-embed-teaser,
.directions-info {
  margin-bottom: 14px;
}

/* === FOOTER === */
footer {
  background: #232650;
  color: #fff;
  padding: 48px 0 33px 0;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.98rem;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  font-size: 1.01rem;
}
footer a,
footer .footer-legal a {
  color: #E5C73C;
  transition: color 0.17s;
}
footer a:hover {
  color: #fffbe8;
}
footer img {
  width: 40px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 19px;
  right: 25px;
  z-index: 1200;
  background: #E5C73C;
  color: #2C3869;
  font-size: 2.1rem;
  border: none;
  padding: 7px 18px 6px 16px;
  border-radius: 99px;
  box-shadow: 0 1.5px 7px 0 rgba(44,56,105,0.13);
  cursor: pointer;
  outline: none;
  transition: background .18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #232650;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232650;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.5,1.8,.6,1);
  box-shadow: 0 10px 44px 8px rgba(44,56,105,0.20);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 22px;
  background: transparent;
  color: #E5C73C;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 100%;
  padding: 5px 12px;
  z-index: 2300;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover {
  background: #E5C73C;
  color: #232650;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 100px 40px 30px 38px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fffbe8;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 8px;
  border-radius: 11px;
  transition: background .15s, color .15s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5C73C;
  color: #232650;
}

/* Hide main nav/Show mobile nav on mobile */
@media (max-width: 970px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 971px) {
  .mobile-menu {
    display: none!important;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; bottom: 0;
  background: #fffbe8;
  color: #2C3869;
  box-shadow: 0 0 20px 0 rgba(44,56,105,0.20);
  padding: 23px 18px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 1rem;
  border-top: 4px solid #E5C73C;
  transition: opacity 0.32s, transform 0.25s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
}
.cookie-consent-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-button, .cookie-consent-banner .cookie-settings-btn {
  background: #2C3869;
  color: #fff;
  border: none;
  border-radius: 33px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  margin-bottom: 2px;
  margin-right: 2px;
  transition: background .14s, color .14s;
}
.cookie-consent-banner .cookie-button:hover,
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #E5C73C;
  color: #2C3869;
}
.cookie-consent-banner .cookie-reject-btn {
  background: #fff;
  color: #2C3869;
  border: 2px solid #2C3869;
  font-weight: 700;
  transition: background .14s, color .14s, border .13s;
}
.cookie-consent-banner .cookie-reject-btn:hover {
  background: #2C3869;
  color: #E5C73C;
  border: 2px solid #E5C73C;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom:0;
  z-index: 3100;
  background: rgba(44,56,105,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.27s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fffbe8;
  border-radius: 21px;
  padding: 38px 24px 28px 28px;
  min-width: 330px;
  max-width: 97vw;
  box-shadow: 0 6px 40px 0 rgba(44,56,105,0.21);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  color: #2C3869;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 2px 10px 0;
  border-bottom: 1px dashed #E5C73C;
}
.cookie-modal-content .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal-content .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #E5C73C;
  position: relative;
  cursor: pointer;
  transition: background .17s;
  flex-shrink: 0;
  border: 1.5px solid #2C3869;
}
.cookie-modal-content .cookie-toggle[data-enabled="true"] {
  background: #2C3869;
}
.cookie-modal-content .cookie-toggle::after {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px 1px rgba(0,0,0,.11);
  transition: left .19s;
}
.cookie-modal-content .cookie-toggle[data-enabled="true"]::after {
  left: 19px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  background: transparent;
  border: none;
  font-size: 1.77rem;
  color: #E5C73C;
  cursor: pointer;
  border-radius: 100%;
  padding: 3px 9px;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: #E5C73C;
  color: #2C3869;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* === ANIMATION === */
.mobile-menu,
.cookie-consent-banner,
.cookie-modal {
  will-change: transform, opacity;
}

/* === ACCESSIBILITY HIGHLIGHT === */
a:focus-visible, .cookie-consent-banner button:focus, .cta:focus {
  outline: 2.5px dashed #E5C73C;
  outline-offset: 2.5px;
}

/* === RESPONSIVE DESIGN (mobile-first) === */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .hero {
    padding: 33px 0 45px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .features .content-wrapper ul,
  .features .content-wrapper ul li,
  .category-grid {
    flex-direction: column;
    gap: 18px;
    min-width: unset;
    max-width: unset;
  }
  .testimonial-card {
    max-width: 100vw;
    min-width: 0;
  }
  .category-grid > div {
    min-width: 0;
    max-width: 100vw;
    padding: 20px 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column!important;
    gap: 18px;
  }
  footer {
    padding: 36px 0 22px 0;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 15px;
    font-size: 0.97rem;
    padding: 16px 8px;
  }
  .cookie-modal-content {
    padding: 19px 11px 16px 13px;
    min-width: 95vw;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 13px;
  }
  .cta, .main-nav .cta.primary, .cta.primary {
    font-size: 0.98rem;
    padding: 10px 14px;
  }
}
/* === END CSS === */
