/* --- 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, main, menu, nav, output, ruby, section, summary, time, mark,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #23272A;
  color: #F2F2F2;
}
ul, ol {
  list-style-position: outside;
  list-style-type: disc;
  margin-left: 1.3em;
}
a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2F2F2;
  text-decoration: underline;
}

/* --- BASE TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #23272A;
  color: #F2F2F2;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
}
h3 {
  font-size: 1.3rem;
  margin-top: 24px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-top: 16px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #F2F2F2;
}
strong {
  color: #FFD700;
  font-weight: 700;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  background: rgba(35, 39, 42, 0.94);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  margin-bottom: 60px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-section {
  align-items: center;
  text-align: center;
  background: #1B1D20;
}

/* --- SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- CARDS & FLEXBOX GRID --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #262a2d;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 370px;
  padding: 24px 20px;
  border: 1.5px solid #3D4146;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(255,215,0,0.08), 0 2px 20px rgba(0,0,0,0.16);
  transform: translateY(-3px) scale(1.015);
  border-color: #FFD70033;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 28px;
}
.feature-grid > div {
  background: #23272A;
  border-radius: 10px;
  padding: 32px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  border: 1px solid #3D4146;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, border 0.16s;
}
.feature-grid > div:hover {
  border: 1.2px solid #FFD70099;
  box-shadow: 0 5px 22px rgba(255,215,0,0.17);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: grayscale(1) brightness(1.2) contrast(1.25);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  background: #f2f2f22d;
  color: #23272A;
  border-radius: 12px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 16px rgba(255, 215, 0, 0.05);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-style: italic;
  transition: transform 0.16s;
}
.testimonial-card:hover {
  transform: scale(1.018);
  box-shadow: 0 8px 32px rgba(255,215,0,0.10);
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #535353;
  margin-left: 12px;
  font-style: normal;
}

.faq-accordion > div {
  background: #282C30;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.11);
  border-left: 4px solid #FFD70099;
  padding: 18px;
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 22px rgba(255,215,0,0.07);
}
.faq-accordion h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: #FFD700;
}

.confirmation {
  align-items: center;
  text-align: center;
}
.confirmation h1 { margin-bottom: 20px; font-size: 2.4rem; }

.map-embed {
  background: #292D31;
  border-radius: 10px;
  padding: 20px;
  margin-top: 12px;
  color: #FFD700;
  font-size: 1.07rem;
}

/* --- TABLE STYLES --- */
table {
  width: 100%;
  background: #262A2D;
  border-collapse: collapse;
  margin-bottom: 24px;
  color: #F2F2F2;
  font-size: 1.01rem;
  border-radius: 10px;
  overflow: hidden;
}
thead tr {
  background: #1B1D20;
}
table th, table td {
  padding: 18px 16px;
  border-bottom: 1px solid #30343B;
}
table th {
  color: #FFD700;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 1.09rem;
  font-weight: 600;
}

/* --- BUTTONS & CTA --- */
.cta, button, input[type="submit"], .mobile-menu-toggle {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  background: #FFD700;
  color: #23272A;
  letter-spacing: 0.5px;
  margin: 12px 8px 0 0;
  box-shadow: 0 1px 8px rgba(35,39,42,0.10);
  outline: none;
  display: inline-block;
}
.cta.primary {
  background: #FFD700;
  color: #23272A;
  border: 2px solid #FFD700;
}
.cta.primary:hover, .cta.primary:focus {
  background: #23272A;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 18px #FFD70033;
}
.cta.secondary {
  background: #23272A;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFD700;
  color: #23272A;
}
button:active { opacity: 0.92; }
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 5px;
  padding: 10px 14px;
  border: 1px solid #393D41;
  background: #292D31;
  color: #F2F2F2;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #FFD70055;
  border-color: #FFD700;
}

/* --- HEADER & NAV --- */
header {
  background: #191B1D;
  border-bottom: 1.5px solid #23272A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  z-index: 1000;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}
header img {
  height: 44px;
  margin-right: 28px;
}
header nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
header nav a {
  color: #F2F2F2;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.25px;
  padding: 7px 10px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  color: #FFD700;
  background: #23272A;
}
header .cta.primary {
  margin-left: 18px;
  margin-right: 0;
}
.mobile-menu-toggle {
  display: none;
  background: #23272A;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-size: 2rem;
  padding: 4px 16px;
  border-radius: 8px;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD700;
  color: #23272A;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  z-index: 1600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23272A;
  box-shadow: 0 2px 40px #000a;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.46,.03,.52,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 46px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #FFD700;
  color: #23272A;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 0 12px;
  cursor: pointer;
  z-index: 1610;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #23272A;
  color: #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #F2F2F2;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.36rem;
  padding: 12px 0;
  border-radius: 0;
  transition: color 0.19s, background 0.19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD700;
  background: #262A2D;
  padding-left: 12px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #23272A 82%, #FFD70008 95%);
  padding: 0 0 48px 0;
  min-height: 340px;
}
.hero .container {
  min-height: 330px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px 24px;
}
.hero h1 {
  color: #FFD700;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px #0009;
}
.hero p {
  font-size: 1.18rem;
  color: #F2F2F2;
  margin-bottom: 24px;
}
.hero .cta {
  margin-top: 10px;
}

/* --- FOOTER --- */
footer {
  background: #1B1D20;
  border-top: 2px solid #23272A;
  padding: 0 0 12px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  padding: 32px 20px 8px 20px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FFD700;
  font-size: 1.05rem;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 4px 10px;
}
footer nav a:hover {
  color: #F2F2F2;
  background: #23272A;
}
footer .text-section {
  color: #F2F2F2;
  font-size: 0.98rem;
  margin-top: 5px;
  opacity: 0.83;
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #292D31;
  color: #F2F2F2;
  box-shadow: 0 -4px 18px rgba(255,215,0,0.11);
  padding: 24px 24px 16px 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.45s;
  font-size: 1rem;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button, .cookie-banner .cta {
  font-size: 1rem;
  border-radius: 7px;
  padding: 10px 22px;
}
.cookie-banner .cta.primary {
  background: #FFD700;
  color: #23272A;
  border: none;
}
.cookie-banner .cta.primary:hover, .cookie-banner .cta.primary:focus {
  background: #23272A;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.cookie-banner .cta.secondary {
  background: #23272A;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.cookie-banner .cta.secondary:hover, .cookie-banner .cta.secondary:focus {
  background: #FFD700;
  color: #23272A;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #23272A;
  color: #F2F2F2;
  padding: 36px 24px 26px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 56px #000b, 0 2px 26px #FFD70033;
  z-index: 3100;
  min-width: 310px;
  max-width: 95vw;
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1.37rem;
}
.cookie-modal label {
  margin: 12px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #FFD700;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.cookie-modal .cta {
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 1rem;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #FFD700;
  border: none;
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.7rem;
  cursor: pointer;
}

/* --- FORMATTED LISTS & TEXT SECTIONS --- */
.text-section {
  padding: 16px 0;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 1.05rem;
}
.text-section img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.7) brightness(1.1);
}

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

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .container { max-width: 960px; }
}
@media (max-width: 900px) {
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 72px;
  }
  nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .footer .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper, .cta-section {
    padding: 24px 12px;
    min-width: 0;
  }
  section {
    margin-bottom: 40px;
    padding: 28px 6px;
  }
  .feature-grid > div,
  .card, .testimonial-card, .faq-accordion > div {
    min-width: unset;
    width: 100%;
    padding: 18px 10px;
  }
  .hero .content-wrapper {
    padding: 28px 10px 25px 10px;
  }
  .hero {
    min-height: 210px;
    padding-bottom: 24px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    font-size: 1rem;
  }
  .faq-accordion > div {
    padding: 12px 7px;
  }
  .map-embed {
    padding: 12px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .cta, button, input[type="submit"], .mobile-menu-toggle {
    font-size: 1rem;
    padding: 12px 13px;
  }
  .content-wrapper, .cta-section {
    padding: 10px 2px;
  }
  section {
    margin-bottom: 25px;
    padding: 16px 2px;
  }
  .hero .content-wrapper {
    padding: 16px 2px 15px 2px;
  }
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* --- PRINT FIXES --- */
@media print {
  * {background: #fff !important; color: #23272A !important;}
  header, nav, .mobile-menu, .cta, footer, .cookie-banner, .cookie-modal {display: none !important;}
  main, .container, section, .content-wrapper { box-shadow: none !important; border: none !important;}
}

/* --- MICRO-INTERACTIONS --- */
.cta, button, a, .card, .testimonial-card, .cookie-modal {
  will-change: transform, box-shadow;
}
.cta:active, button:active {
  transform: scale(0.97);
}

/* --- HIDE SCROLL WHEN MODAL OPEN --- */
body.modal-open {
  overflow: hidden;
}

/* --- UTILITIES --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
