/* CSS RESET & BASE TYPOGRAPHY ------------------------------------------------- */
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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
li + li {
  margin-top: 8px;
}
a {
  color: #00457C;
  text-decoration: none;
  transition: color .15s;
}
a:hover, a:focus {
  color: #222;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; letter-spacing: -0.5px; }
h2 { font-size: 2rem;  letter-spacing: -0.3px; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5, h6 { font-size: 1rem; }
@media (min-width: 600px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #222;
}
strong { font-weight: 600; }

/* BRAND MONOCHROME SOPHISTICATED ------------------------------------------------- */
:root {
  --brand-primary: #00457C;
  --brand-secondary: #F4B000;
  --brand-accent: #fff;
  --bg-light: #fff;
  --bg-dark: #111;
  --bg-mid: #f3f3f6;
  --border-gray: #e0e0e0;
  --gray-500: #737373;
  --gray-300: #c7c7c7;
  --shadow: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-hover: 0 4px 18px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.24s cubic-bezier(.4,.2,.6,1);
  --focus: 0 0 0 2px #00457C44;
}

body {
  background: var(--bg-light);
  color: #181818;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

/* HEADER ------------------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.03);
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  max-height: 36px;
}
/* NAVIGATION */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav .cta.primary {
  color: #fff;
  background: #111;
  border-radius: var(--radius-sm);
  padding: 8px 22px;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  box-shadow: 0 2px 6px -1px rgba(80,80,80,0.07);
  transition: background .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f3f3f3;
  color: #000;
}
.main-nav .cta.primary:hover, 
.main-nav .cta.primary:focus {
  background: var(--brand-primary);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  transition: background .18s;
  padding: 4px 12px;
  margin-left: 10px;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  outline: none;
  box-shadow: var(--focus);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(245,245,247,0.98);
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  z-index: 2000;
  padding: 0 32px 0 32px;
  box-shadow: -4px 0 18px 0 rgba(30,30,30,0.14);
  transition: transform .42s cubic-bezier(.4,.85,.36,1);
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  left: 0;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #d2d2d6;
  color: #000;
}
.mobile-nav a.cta.primary {
  background: #111;
  color: #fff;
  font-weight: 700;
  padding-left: 18px;
  padding-right: 18px;
  margin-top: 10px;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 2.1rem;
  background: #fff;
  color: #222;
  border: none;
  border-radius: var(--radius-sm);
  padding: 2px 12px;
  z-index: 2100;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ececec;
}

@media (max-width: 1050px) {
  .container { max-width: 95vw; }
  .main-nav { gap: 18px; }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* LAYOUT STRUCTURE ------------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 70px 70px;
  background: transparent;
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .section {
    padding: 60px 0 60px 0;
    margin-bottom: 80px;
  }
}

/* FLEX UTILITIES FOR PAGES ------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 330px;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .15s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
}
.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, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}
/* HERO SECTION --------------------------------------------------------------- */
.hero-section {
  background: #111;
  color: #fff;
  padding: 56px 0 56px 0;
  margin-bottom: 0;
}
.hero-section .container {
  align-items: center;
  justify-content: center;
}
.content-wrapper {
  padding: 60px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 38px;
}
.hero-section h1 {
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,8,32,0.13);
}
.hero-section p {
  color: #ededed;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

/* FEATURES/VORTEILE FLEX-GRID ------------------------------------------------ */
.feature-grid, .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fafafd;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 20px 18px 24px 18px;
  flex: 1 1 250px;
  min-width: 200px;
  max-width: 320px;
  transition: box-shadow .18s;
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  background: #f7f8fa;
}
.feature-item img {
  height: 34px;
  margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #222;
}
.feature-item p {
  color: #434343;
  font-size: 1rem;
  margin-bottom: 0;
}

/* SERVICES LIST --------------------------------------------------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.services-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .16s;
}
.services-item:hover {
  box-shadow: var(--shadow-hover);
}
.services-item img {
  height: 34px;
}
.services-item h2, .services-item h3 {
  font-size: 1.15rem;
  color: #111;
  font-weight: 600;
}
.services-item p {
  color: #373737;
  margin-bottom: 0;
}
.services-highlight {
  background: #111;
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 20px 16px 22px;
  font-size: 1.03rem;
  margin-top: 24px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.08);
}
.services-highlight h3 {
  color: #fff;
  margin-bottom: 10px;
}
.services-highlight p{
  color: #fff;
}
@media (max-width: 1024px) {
  .feature-grid, .services-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .services-list {
    flex-direction: column;
    gap: 18px;
  }
  .services-item, .feature-item {
    max-width: 100%;
  }
}

/* TESTIMONIALS --------------------------------------------------------------- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fafafa;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(60,60,60,0.08);
  padding: 28px 28px 20px 28px;
  min-width: 220px;
  max-width: 340px;
  flex: 1;
  margin-bottom: 20px;
  border: 1.5px solid #ececec;
  transition: box-shadow .16s, border .13s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border: 1.5px solid var(--brand-primary);
}
.testimonial-stars {
  color: #F4B000;
  font-size: 1.35em;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  font-weight: 700;
  text-shadow: 0 1px 6px #fff4;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.05rem;
  margin-bottom: 0;
  text-align: center;
}
.testimonial-author {
  color: #555;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-top: 0;
}
@media (max-width: 850px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
}

/* PRICING TABLE --------------------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(80,80,80,0.06);
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #eaeaea;
}
.pricing-table th {
  background: #f7f7f7;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table th, .pricing-table td {
    padding: 12px 10px;
  }
}

.zones-info, .optional-services {
  background: #fafafd;
  border-radius: var(--radius-sm);
  padding: 20px 18px 12px 22px;
  font-size: 1.02rem;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* CTA BUTTONS ------------------------------------------------------------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px 36px;
  font-size: 1.13rem;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  margin-top: 18px;
  transition: var(--transition);
  letter-spacing: .02em;
  text-align: center;
}
.cta.primary {
  background: #111;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 3px 14px 0 rgba(0,0,0,0.10);
  outline: none;
}
.cta:active {
  transform: translateY(2px) scale(.99);
}

/* CTA SECTION ------------------------------------------------------------------- */
.cta-section {
  background: #111;
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 44px 0;
  box-shadow: var(--shadow-hover);
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 22px;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
}
.cta-section p {
  color: #e6e6e6;
}
.cta-section .cta {
  margin-top: 16px;
}

/* MAP SECTION ------------------------------------------------------------------- */
.map-section .location-map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fafafd;
  border-radius: var(--radius-sm);
  padding: 26px 18px;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(80,80,80,0.06);
}
.map-section .location-map img {
  height: 44px;
  margin-bottom: 8px;
}

/* FAQ --------------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item h2 {
  font-size: 1.04rem;
  color: #222;
  margin-bottom: 6px;
}
.faq-contact-prompt {
  margin-top: 22px;
  background: #fafafd;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 1.01rem;
}
.faq-contact-prompt a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color .18s;
}
.faq-contact-prompt a:hover {
  color: #111;
  text-decoration: none;
}

/* TABLES, LISTS, ETC. ----------------------------------------------------------- */
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
th, td { text-align: left; }

/* TRUST / AWARD ELEMENTS -------------------------------------------------------- */
.trust-elements {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}
.trust-elements p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.04rem;
}
@media (max-width: 700px) {
  .trust-elements { flex-direction: column; gap: 8px; }
}

/* FOOTER ------------------------------------------------------------------------ */
footer {
  background: #111;
  color: #e9e9e9;
  padding: 0;
  border-top: 1.5px solid #222;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 24px;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #a6a6a6;
  font-size: 0.98rem;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.97rem;
  color: #ccc;
  margin-top: 10px;
}
footer a {
  text-decoration: underline dotted;
}

@media (max-width: 520px) {
  .footer-nav { gap: 11px; }
  .footer-info { font-size: 0.92rem; }
}

/* THIN SCROLLBAR --------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 7px;
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #2223;
  border-radius: 99px;
}

/* COOKIE CONSENT BANNER + MODAL ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 26px 20px 20px 20px;
  box-shadow: 0 -3px 18px 0 rgba(0,0,0,0.16);
  z-index: 4000;
  flex-wrap: wrap;
  gap: 20px;
  transition: transform .36s cubic-bezier(.6,.1,.8,1), opacity .36s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 1.01rem;
  flex: 1 1 310px;
  color: #fafafa;
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: #fff;
  color: #111;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  outline: none;
  transition: background .18s, color .17s, box-shadow .15s;
  box-shadow: 0 1px 5px 0 rgba(70,65,65,0.09);
}
.cookie-banner .accept-all {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: #111;
  color: #fff;
}
.cookie-banner .reject-all {
  background: #fff;
  color: #111;
  border: 1.8px solid #555;
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #f3f3f3;
  color: #000;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #fff;
  color: #111;
}

@media (max-width: 600px) {
  .cookie-banner, .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* Cookie Preferences Modal ------------------------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,24,24,0.36);
  z-index: 4500;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .33s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: var(--radius);
  max-width: 420px;
  width: 96vw;
  padding: 36px 26px 24px 26px;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  animation: cookieModalPop .33s cubic-bezier(.7,.22,.26,1);
  position: relative;
}
@keyframes cookieModalPop {
  from { transform: scale(.96) translateY(32px); opacity: 0; }
  to {   transform: scale(1) translateY(0);   opacity: 1; }
}
.cookie-modal h2 {
  color: #00457C;
  font-size: 1.33rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2px;
}
.cookie-category .toggle-label {
  font-weight: 600;
  color: #222;
}
.cookie-category .toggle-desc {
  color: #555;
  font-size: 0.97rem;
}
.cookie-modal .close-modal {
  position: absolute; top: 14px; right: 18px;
  background: #fff; border: none; font-size: 2.1rem; color: #222;
  border-radius: var(--radius-sm);
  padding: 0 7px;
  transition: background .15s;
}
.cookie-modal .close-modal:hover { background: #f3f3f3; }
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
/* TOGGLE SWITCHES */
.cookie-switch {
  position: relative;
  width: 36px;
  height: 19px;
  display: inline-block;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  background: #ccc;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 19px;
  transition: background 0.16s;
}
.cookie-switch input:checked + .slider {
  background: var(--brand-primary);
}
.cookie-switch .slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
  box-shadow: 0 1px 3px 0 rgba(0,0,38,0.11);
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-category.disabled .cookie-switch .slider { background: #bbb !important; }
.cookie-category.disabled .cookie-switch .slider:before { background: #eee; }

/* THANK-YOU SECTION ------------------------------------------------------------ */
.thank-you-section {
  min-height: 46vh;
  background: #fafafd;
  border-radius: var(--radius);
  box-shadow: 0 2px 24px 0 rgba(20,20,22,0.08);
  margin-top: 45px;
  margin-bottom: 60px;
  padding: 38px 0 38px 0;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you-section h1 { color: var(--brand-primary); }

/* MISCELLANEOUS ---------------------------------------------------------------- */
::-moz-selection { background: var(--brand-primary); color: #fff; }
::selection { background: var(--brand-primary); color: #fff; }

a:focus-visible, button:focus-visible, .cta:focus-visible, .main-nav a:focus-visible, .mobile-nav a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* SPACING AND FLEX GAP RULES --------------------------------------------------- */
/* Provided patterns, utilized in context above for .section, .card-container, etc. */

/* RESPONSIVE PATCHES ----------------------------------------------------------- */
@media (max-width: 480px) {
  .card, .card-container, .services-item, .testimonial-card {
    min-width: 94vw;
    padding: 16px 6vw;
  }
  .pricing-table th, .pricing-table td { font-size: 0.97rem; }
  .section { padding: 28px 2px; margin-bottom:32px; }
  .cta-section { padding: 24px 0; }
  .hero-section { padding: 40px 0 30px 0; }
}

/* FORMS ------------------------------------------------------------------------ */
input, select, textarea {
  border: 1.5px solid #dbdbdb;
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 12px;
  transition: border .15s;
  color: #222;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: 0 0 0 2px #00457c22;
}
label { display: block; margin-bottom: 6px; font-weight: 500; }

/* END OF CSS */
