/* RESET & 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, 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #27313D;
  font-size: 16px;
  line-height: 1.65;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #27313D;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.64,.09,.08,1);
  font-weight: 600;
}
a:hover, a:focus {
  color: #ECD065;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #27313D;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(39,49,61,0.065);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(39,49,61,0.11);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(39,49,61,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.text-section {
  margin-bottom: 8px;
  font-size: 1.125rem;
  color: #27313D;
}
.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(39,49,61,0.13);
  border-left: 6px solid #ECD065;
  min-width: 250px;
  max-width: 420px;
  flex: 1 1 260px;
  font-size: 1.06rem;
  color: #1c2430;
  transition: transform 0.13s cubic-bezier(.64,.09,.08,1), box-shadow 0.15s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(39,49,61,0.18);
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-card div {
  font-size: 0.99rem;
  color: #27313D;
  font-weight: 700;
  opacity: 0.8;
}
.rating-summary {
  font-size: 1.15rem;
  font-weight: 700;
  color: #27313D;
  margin-top: 16px;
  background: #ECD065;
  border-radius: 12px;
  padding: 7px 16px;
  display: inline-block;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(39,49,61,0.08);
  padding: 18px 15px;
  margin-bottom: 20px;
}
.map-placeholder {
  background: #f5f5f5;
  border: 2px dashed #ECD065;
  color: #5a5a5a;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
  text-align: center;
  font-style: italic;
}
/* BUTTONS & CTA */
.cta, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 13px 32px;
  text-decoration: none;
  transition: background 0.19s, color 0.15s, box-shadow 0.15s, transform 0.12s cubic-bezier(.6,.2,.1,1);
  margin-top: 12px;
  margin-bottom: 8px;
  background: #ECD065;
  color: #27313D;
  box-shadow: 0 2px 14px rgba(236,208,101,0.08);
}
.cta.primary {
  background: #27313D;
  color: #fff;
  box-shadow: 0 4px 24px rgba(39,49,61,0.09);
}
.cta.secondary {
  background: #ECD065;
  color: #27313D;
  box-shadow: 0 2px 10px rgba(236,208,101,0.14);
}
.cta:hover, .cta:focus {
  box-shadow: 0 6px 36px 1px rgba(39,49,61,0.15);
  transform: translateY(-3px) scale(1.035);
  filter: brightness(1.04);
}
.cta.primary:hover, .cta.primary:focus {
  background: #31415b;
  color: #ECD065;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #ffe892;
  color: #27313D;
}

/* HEADER: DESKTOP NAV/LAYOUT/MOBILE MENU BUTTON */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(39,49,61,0.075);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: none;
  padding: 7px 12px;
  border-radius: 18px;
  color: #27313D;
  transition: background 0.17s, color 0.13s, box-shadow 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ECD065;
  color: #27313D;
}
/* MOBILE NAV: BURGER / OVERLAY */
.mobile-menu-toggle {
  display: none;
  background: #27313D;
  color: #ECD065;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 9px;
  cursor: pointer;
  margin-right: 14px;
  transition: background 0.16s, color 0.14s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ECD065;
  color: #27313D;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 320px;
  max-width: 80vw;
  height: 100vh;
  background: #27313D;
  color: #fff;
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(.5,.2,.1,1);
  box-shadow: 3px 0 40px rgba(39,49,61,0.23);
  z-index: 2000;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #ECD065;
  font-size: 2.1rem;
  padding: 12px 18px;
  align-self: flex-end;
  cursor: pointer;
  margin-top: 12px;
  margin-right: 4px;
  z-index: 2002;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  padding: 0 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 14px 6px;
  border-radius: 8px;
  transition: background 0.16s, color 0.14s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECD065;
  color: #27313D;
}

/* HERO SECTION */
.hero {
  background: #27313D;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 36px rgba(39,49,61,0.13);
  margin-bottom: 60px;
  padding: 40px 0 62px 0;
  width: 100%;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  color: #ECD065;
  font-size: 2.8rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.hero p {
  color: #fff;
  font-size: 1.23rem;
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero .cta {
  background: #ECD065;
  color: #27313D;
}
.hero .cta:hover, .hero .cta:focus {
  background: #fff;
  color: #27313D;
  box-shadow: 0 8px 32px 1px rgba(236,208,101,0.19);
}
/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 1rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(39,49,61,0.09);
}
thead {
  background: #ECD065;
  color: #27313D;
}
th, td {
  padding: 15px 14px;
  text-align: left;
  border-bottom: 1px solid #F4F4F4;
}
th {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
tr:last-child td {
  border-bottom: none;
}
/* ACCORDION FAQ */
.faq-accordion h3 {
  margin-bottom: 16px;
}
.faq-accordion ul {
  list-style-type: none;
  padding-left: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.faq-accordion li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 5px rgba(236,208,101,.09);
  padding: 14px 18px;
  font-size: 1rem;
  color: #27313D;
}
/* FOOTER */
footer {
  background: #27313D;
  color: #fff;
  border-radius: 36px 36px 0 0;
  padding: 32px 0 18px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-left img {
  height: 38px;
}
.footer-left p {
  font-size: 1.07rem;
  color: #ECD065;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-menu a {
  color: #ECD065;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-contact a {
  color: #ECD065;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) scale(1);
  width: calc(100vw - 32px);
  max-width: 480px;
  background: #fff;
  color: #27313D;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(39,49,61,0.16);
  padding: 30px 26px 18px 26px;
  z-index: 3200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, transform 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) scale(.97);
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #27313D;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #31415b;
  color: #ECD065;
}
.cookie-banner .reject {
  background: #ddd;
  color: #27313D;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ECD065;
  color: #27313D;
}
.cookie-banner .settings {
  background: #ECD065;
  color: #27313D;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff8d8;
  color: #27313D;
}
.cookie-modal-overlay {
  display: flex;
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(39,49,61,0.45);
  z-index: 3500;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal {
  background: #fff;
  color: #27313D;
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(39,49,61,0.16);
  padding: 36px 32px 28px 32px;
  min-width: 340px;
  max-width: 96vw;
  z-index: 3501;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ECD065;
  font-family: 'Playfair Display', serif;
}
.cookie-modal-section {
  margin-bottom: 16px;
}
.cookie-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-category .switch input { opacity: 0; width: 0; height: 0;}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ecd065;
  border-radius: 24px;
  transition: background 0.12s;
}
.cookie-category .switch input:checked + .slider {
  background: #27313D;
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.13s;
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-actions .save {
  background: #27313D;
  color: #ECD065;
}
.cookie-modal-actions .cancel {
  background: #ddd;
  color: #27313D;
}
/* MEDIA QUERIES: MOBILE FIRST */
@media (max-width: 1090px) {
  .main-nav {
    gap: 16px;
  }
  .section {
    padding: 28px 10px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .footer-menu {
    gap: 8px;
  }
  .footer-left {
    gap: 10px;
  }
  .footer-contact ul {
    gap: 4px;
  }
}
@media (max-width: 850px) {
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
@media (max-width: 840px) {
  .container {
    max-width: 98vw;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.05rem;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .main-nav {
    display: none;
  }
  .footer-left img { height: 33px; }
  .footer-left p { font-size: 0.98rem; }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 40px;
  }
  .card, .testimonial-card {
    padding: 14px 10px;
    max-width: 100%;
  }
  .card-container, .testimonial-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 0 2px;
  }
  table th, table td {
    padding: 10px 6px;
    font-size: 0.92rem;
  }
  .cookie-banner {
    padding: 20px 10px 10px 14px;
    min-width: 0;
    max-width: 95vw;
  }
  .cookie-modal {
    padding: 26px 6vw 18px 6vw;
    min-width: 0;
    max-width: 94vw;
  }
}
@media (max-width: 525px) {
  .cookie-banner {
    padding: 13px 2vw 8px 2vw;
  }
  .cookie-modal {
    padding: 10vw 2vw 8vw 2vw;
  }
}
@media (max-width: 400px) {
  .cta, .cta.primary, .cta.secondary {
    padding: 11px 10px;
    font-size: 0.96rem;
  }
  .hero h1, h1 {
    font-size: 1.2rem;
  }
}
/* SCROLLBAR MODERN */
::-webkit-scrollbar {
  width: 12px;
  background: #ecd06520;
}
::-webkit-scrollbar-thumb {
  background: #ECD065;
  border-radius: 9px;
}

/* GEOMETRIC DECORATIVE SHAPE: BOLD STYLE */
.geoshape {
  position: absolute;
  z-index: 0;
  background: #ECD065;
  border-radius: 12px 36px 60px 18px/36px 14px 28px 42px;
  opacity: 0.2;
  pointer-events: none;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta, .cta.primary, .cta.secondary, .card, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal {
  transition-timing-function: cubic-bezier(.5,.2,.1,1);
}

/* OVERRIDE: FORBIDDEN GRID/COLS - For validation only, DO NOT CHANGE */
[class*='grid'], [class*='column'], [style*='display: grid'], [style*='columns'] {
  display: flex !important;
  flex-wrap: wrap !important;
}
