/* 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  width: 100%;
  height: 100%;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f6f6f6 0%, #e4eaf0 100%);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #283B49;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #283B49;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D0A126;
  outline-offset: 2px;
}
/* Brand Typography */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
strong {
  font-weight: 600;
  color: #283B49;
}
/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.hero {
  background: linear-gradient(140deg, #283B49 0%, #617891 100%);
  color: #fff;
  padding: 64px 0 48px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1, .hero h2 {
  color: #fff;
}
.hero h2 {
  font-size: 20px;
  font-weight: 400;
  opacity: .96;
}
.hero p {
  color: #f6f6f6;
  margin-bottom: 12px;
}
/* NAVIGATION - Desktop & Mobile */
header {
  background: #ffffffea;
  box-shadow: 0 2px 16px rgba(40,59,73,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  background: #F6F6F6;
  color: #D0A126;
}
.main-nav img {
  width: 44px;
  height: auto;
  margin-right: 10px;
}
.cta-primary {
  background: linear-gradient(90deg, #D0A126 0%, #f6c956 100%);
  color: #283B49 !important;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  box-shadow: 0 3px 18px 0 rgba(212,169,39,0.18);
  padding: 11px 24px;
  margin-left: 12px;
  transition: box-shadow 0.23s, background 0.24s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #c7a942 0%, #f7d375 100%);
  box-shadow: 0 5px 22px 0 rgba(177,143,28,0.20);
  color: #22313e !important;
}
.cta-secondary {
  background: transparent;
  color: #D0A126;
  border: 2px solid #D0A126;
  border-radius: 6px;
  font-weight: 500;
  padding: 10px 18px;
  margin-top: 12px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #D0A126;
  color: #fff;
}
/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 30px;
  color: #283B49;
  border-radius: 8px;
  padding: 8px 14px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #D0A126;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,59,73,0.94);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.6,.1,.2,1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.14s;
}
.mobile-menu-close:focus {
  color: #D0A126;
  outline: 2px solid #D0A126;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-size: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 15px 0 9px 0;
  transition: color 0.14s, background 0.100s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D0A126;
  background: #31424e;
}
/* MAIN CONTENT CARD STYLES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 22px 26px 22px;
  box-shadow: 0 3px 22px 0 rgba(40,59,73,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, transform 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px rgba(40,59,73,.18);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.section ul, .section ol, .content-wrapper ul, .content-wrapper ol {
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section ul li, .section ol li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  color: #283B49;
  background: transparent;
  border-radius: 8px;
  padding: 6px 0;
}
.section li img {
  min-width: 24px;
  max-width: 28px;
}
.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;
  background: #F6F6F6;
  color: #232b2d;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(40,59,73,0.06);
  padding: 20px 22px;
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 210px;
  max-width: 650px;
}
.testimonial-card p {
  color: #283B49;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
}
.testimonial-card span {
  font-size: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #6b7786;
}
.features {
  background: linear-gradient(120deg,#f9f7f2 60%,#e4eaf0 100%);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.quick-contact p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 9px;
  font-size: 16px;
  color: #283B49;
}
.quick-contact a {
  color: #D0A126;
  font-weight: 500;
}
.services-highlight {
  background: linear-gradient(125deg,#e4eaf0 70%, #F6F6F6 100%);
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.services-highlight strong {
  color: #283B49;
}
.popular-services {
  background: #f0ead7;
  color: #283B49;
  padding: 12px 18px;
  border-radius: 8px;
  margin: 22px 0 10px 0;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 1px 8px 0 rgba(40,59,73,0.07);
}
.disclaimer {
  color: #8b8b8b;
  font-size: 14px;
  margin-top: 12px;
}
.faq-list li {
  margin-bottom: 15px;
  color: #283B49;
  border-left: 4px solid #D0A126;
  padding: 8px 10px 8px 14px;
  background: #faf7ec;
  border-radius: 8px;
}
.map-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #F6F6F6;
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 8px;
  box-shadow: 0 2px 10px 0 rgba(40,59,73,0.04);
}
/* TABLE STYLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(40,59,73,0.07);
}
th, td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #e6e6e6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
th {
  background-color: #D0A126;
  color: #fff;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}
/* Footer styles */
footer {
  background: #283B49;
  color: #fff;
  padding: 36px 0 24px 0;
  margin-top: 30px;
}
footer .container {
  padding: 0 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 20px;
}
.footer-menu a {
  color: #D0A126;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  filter: grayscale(1) brightness(.95);
  transition: filter 0.17s, transform 0.21s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1.2);
  transform: scale(1.08) translateY(-2px);
}
footer p {
  margin-top: 4px;
  color: #ddd;
  font-size: 15px;
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 130;
  background: #283B49;
  color: #fff;
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 -2px 18px 0 rgba(40,59,73,.17);
  font-size: 15.5px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 3px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Montserrat';
  font-size: 15px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 1px 8px 0 rgba(40,59,73,.07);
}
.cookie-banner .accept-btn {
  background: #D0A126;
  color: #283B49;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #a5811d;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #A5811d;
  border: 2px solid #D0A126;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #FFD058;
  color: #283B49;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: #f6f6f6;
  border: 2px solid #F6F6F6;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #f6f6f6;
  color: #283B49;
}
/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,59,73,.74);
  z-index: 140;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.22s;
}
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #283B49;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(40,59,73,0.13);
  width: 100%;
  max-width: 420px;
  padding: 34px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalIn .21s cubic-bezier(.57,.07,.17,1.01);
}
@keyframes modalIn {
 from { transform: translateY(48px) scale(.96); opacity:0; } to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 21px;
  margin-bottom: 4px;
  color: #283B49;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 16px;
}
.cookie-modal-category label {
  font-size: 16px;
  font-weight: 500;
  color: #283B49;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #D0A126;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .cookie-modal-btns button {
  min-width: 105px;
}
.cookie-modal .close-modal-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: #283B49;
  position: absolute;
  top: 12px; right: 13px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.17s;
}
.cookie-modal .close-modal-btn:hover, .cookie-modal .close-modal-btn:focus {
  color: #D0A126;
}
/* Responsive Layout: Mobile First */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    padding: 0;
  }
  .hero {
    padding: 42px 0 36px 0;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 16px;
  }
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 7px;
  }
  .features, .services-highlight {
    padding: 28px 6px;
    border-radius: 10px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 17px 10px;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 11px;
    margin-bottom: 2px;
  }
  footer {
    padding: 24px 0 16px 0;
  }
  .cookie-modal {
    max-width: 92vw;
    padding: 22px 6vw 20px 6vw;
  }
  .cookie-banner {
    padding: 18px 10px 18px 10px;
    font-size: 14.5px;
  }
}
@media (max-width: 490px) {
  h1, .hero h1 {
    font-size: 23px;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 17.5px;
    margin-bottom: 11px;
  }
  .main-nav {
    gap: 9px;
    font-size: 13px;
  }
  .cta-primary, .cta-secondary {
    font-size: 15px;
    padding: 9px 12px;
  }
  .footer-social a img {
    width: 22px;
    height: 22px;
  }
}
/* Global transitions and micro-interactions */
a, button, .cta-primary, .cta-secondary, .testimonial-card {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(40,59,73,.14);
  transform: translateY(-2px) scale(1.01);
}
.popular-services {
  transition: box-shadow 0.17s, background 0.19s;
}
.popular-services:hover {
  box-shadow: 0 3px 22px 0 rgba(212,169,39,0.17);
  background: #fffdee;
}
/* Spacing and Alignment Patterns (MANDATORY) - already handled above */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Focus outlines for accessibility */
*:focus-visible {
  outline: 2px solid #D0A126;
  outline-offset: 2px;
}

/* Hide scroll on mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Hide elements for accessibility */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
