/* ---- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  background-color: #F8F8F8;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #20344A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF8C1A;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
::-webkit-input-placeholder { color: #47505b; }
::-moz-placeholder { color: #47505b; }
:-ms-input-placeholder { color: #47505b; }
::placeholder { color: #47505b; }

/* ---- TYPOGRAPHY ---- */
h1, .hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #20344A;
  margin-bottom: 10px;
}
.section h2 {
  margin-bottom: 22px;
}
p, .text-section {
  color: #242424;
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}

/* ---- CONTAINER & LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section, section:not(.hero):not(.cta):not(.confirmation):not(.legal):not(.about):not(.contact):not(.features):not(.services):not(.testimonials), .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(22, 24, 28, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(32, 52, 74, 0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

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

/* ---- HEADER & NAV ---- */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
header a img {
  width: 138px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: #282828;
  letter-spacing: 0.01em;
  padding: 4px 0;
  transition: color 0.23s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  margin: 0 auto; 
  width: 0%;
  border-bottom: 2px solid #FF8C1A;
  transition: width 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FF8C1A;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 68%;
}
.nav-cta {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 26px;
  background: #111;
  color: #fff;
  border-radius: 32px;
  font-weight: 600;
  margin-left: 36px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 14px rgba(32,52,74,0.06);
  border: none;
  outline: none;
  cursor: pointer;
}
.nav-cta:hover, .nav-cta:focus {
  background: #FF8C1A;
  color: #111;
}

/* ---- MOBILE NAV ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #20344A;
  cursor: pointer;
  z-index: 210;
  margin-left: 24px;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #FF8C1A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,36,36,0.98);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.55,.21,.58,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 22px;
  padding-left: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  font-family: 'Oswald', Arial, sans-serif;
  align-self: flex-end;
  margin-right: 22px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 11001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FF8C1A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 24px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.21rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 0;
  border-radius: 4px;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF8C1A;
  background: rgba(32,52,74,0.15);
}
@media (max-width: 992px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* ---- HERO ---- */
.hero {
  width: 100%;
  background: #fff;
  margin-top: 0;
  padding-top: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #eee;
}
.hero .container {
  min-height: 260px;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 740px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* ---- FEATURES ---- */
.features {
  background: #FAFAFA;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a1a1a;
  padding: 20px 20px;
  min-width: 230px;
  box-shadow: 0 2px 10px rgba(32,52,74,0.04);
  margin-bottom: 0;
  flex: 1 1 240px;
}
.features ul li img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: grayscale(0.9) brightness(0.85);
}
@media (max-width: 900px) {
  .features ul {
    gap: 18px;
    flex-direction: column;
  }
}

/* ---- SERVICES ---- */
.services {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services ul, .services ol {
  margin-bottom: 16px;
}
.services ul li, .services ol li {
  font-size: 1.04rem;
  margin-bottom: 14px;
  color: #333;
}
.services h3 {
  font-size: 1.18rem;
  color: #20344A;
}
.service-price {
  display: inline-block;
  color: #FF8C1A;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.services ul li {
  background: #F8F8F8;
  border-radius: 8px;
  padding: 14px 18px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: #FAFAFA;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(27,27,34,0.07);
  margin-bottom: 24px;
  transition: box-shadow 0.23s, transform 0.22s;
  min-width: 260px;
  font-size: 1.11rem;
  color: #191a1b;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 20px rgba(32, 52, 74, 0.15);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card span {
  margin-left: auto;
  color: #20344A;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  font-style: normal;
}
@media (max-width:540px){
  .testimonials, .testimonial-card {
    padding: 18px !important;
    font-size: 1rem;
  }
}

/* ---- CTA ---- */
.cta {
  background: #1a1a1a;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.cta .content-wrapper, .cta h2, .cta p {
  align-items: center;
  color: #fff;
}
.cta .btn.btn-primary {
  margin-top: 18px;
}

/* ---- CONTACT, ABOUT, CONFIRMATION, LEGAL ---- */
.contact, .about, .confirmation, .legal {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact .text-section,
.about .text-section,
.legal .text-section {
  color: #1a1a1a;
}

/* ---- BUTTONS ---- */
.btn, button {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.07rem;
  cursor: pointer;
  background: #20344A;
  color: #fff;
  box-shadow: 0 2px 12px rgba(32, 52, 74, 0.08);
  letter-spacing: 0.015em;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  margin-top: 14px;
}
.btn.btn-primary {
  background: #FF8C1A;
  color: #181818;
  box-shadow: 0 5px 24px rgba(255,140,26,0.08);
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #20344A;
  color: #fff;
  box-shadow: 0 9px 28px rgba(32,52,74,0.14);
  transform: translateY(-2px) scale(1.025);
}
.btn:hover, .btn:focus {
  background: #fff;
  color: #20344A;
  border: 1.5px solid #20344A;
  box-shadow: 0 6px 28px rgba(32,52,74,0.14);
}
@media (max-width:768px){
  .btn, button { width: 100%; padding: 12px 0; font-size: 1rem; }
}

/* ---- FOOTER ---- */
footer {
  background: #181a1d;
  color: #eaeaea;
  padding: 38px 0 18px 0;
  width: 100%;
  border-top: 1px solid #222428;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
.footer-logo img {
  width: 76px;
  height: auto;
  opacity: 0.97;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  opacity: 0.91;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF8C1A;
  opacity: 1;
}
footer address {
  font-style: normal;
  font-size: 0.97rem;
  color: #C1C5C9;
  line-height: 1.65;
}
@media (max-width: 768px) {
  footer .container { flex-direction: column; gap: 14px; align-items: flex-start; }
  footer { padding: 28px 0 11px 0; }
  .footer-logo img { margin-bottom: 10px; }
}

/* ---- COOKIE CONSENT ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #202124;
  color: #fff;
  z-index: 12000;
  width: 100%;
  box-shadow: 0 -3px 16px rgba(32, 32, 32, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 24px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.32s cubic-bezier(.58,.36,.41,1);
  transform: translateY(0);
}
.cookie-banner.hide { transform: translateY(150%); }
.cookie-banner-content {
  flex: 1 1 0;
  margin-right: 22px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner-btns .btn, .cookie-banner-btns button {
  padding: 7px 18px;
  font-size: 1rem;
  border-radius: 22px;
  background: #FF8C1A;
  color: #111;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner-btns .btn:hover, .cookie-banner-btns button:hover {
  background: #20344A;
  color: #fff;
}
.cookie-banner-btns .cookie-settings-btn {
  background: #fff;
  color: #20344A;
  border: 1.2px solid #20344A;
}
.cookie-banner-btns .cookie-settings-btn:hover {
  background: #20344A;
  color: #fff;
}
@media (max-width:768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 9px;
  }
  .cookie-banner-content {
    margin-right: 0;
  }
  .cookie-banner-btns { width: 100%; gap: 10px; justify-content: flex-start; }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23, 23, 25, 0.87);
  z-index: 12001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  color: #191a1b;
  border-radius: 12px;
  box-shadow: 0 8px 36px rgba(32,52,74,0.17);
  padding: 38px 28px 26px 28px;
  max-width: 416px;
  width: 92vw;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookiefadein 0.33s cubic-bezier(.66,.01,.42,1) both;
}
@keyframes cookiefadein { from { opacity:0; transform: scale(0.95); } to { opacity: 1; transform: scale(1);} }
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 14px;
  background: none;
  border: none;
  color: #333;
  font-size: 1.25rem;
  cursor: pointer;
  font-weight: 700;
}
.cookie-modal h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  color: #20344A;
  margin-bottom: 12px;
}
.cookie-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-switch-label {
  font-size: 1rem;
  color: #181a1a;
}
.cookie-switch {
  width: 42px; height: 24px;
  border-radius: 23px;
  background: #eee;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-switch[aria-checked="true"] {
  background: #FF8C1A;
}
.cookie-switch-thumb {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(32,52,74,0.1);
  transition: left 0.16s;
}
.cookie-switch[aria-checked="true"] .cookie-switch-thumb {
  left: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn {
  font-size: 1.05rem;
  padding: 7px 18px;
  border-radius: 22px;
}
.cookie-modal-actions .btn-secondary {
  background: #F8F8F8;
  color: #20344A;
  border: 1.2px solid #20344A;
}
.cookie-modal-actions .btn-secondary:hover {
  background: #20344A;
  color: #fff;
}
@media(max-width: 480px){
  .cookie-modal { padding: 20px 6vw 14px 6vw; }
}

/* ---- UTILS ---- */
.text-section {
  display: block;
  margin-bottom: 0;
  font-size: 1.04rem;
  color: #292929;
}
.text-section a {
  color: #20344A;
  text-decoration: underline;
}
.text-section a:hover { color: #FF8C1A; }

/* ---- MONOCHROME-SOPHISTICATED EXTRAS ---- */
/* Borders, Shadows, Hover Animations are subtle and elegant, cards have dramatic contrast on dark backgrounds */
.card, .content-wrapper, .features ul li, .testimonial-card, .services ul li {
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.17s;
}
.card:hover, .features ul li:hover, .testimonial-card:hover, .services ul li:hover {
  box-shadow: 0 10px 38px rgba(32, 52, 74, 0.13), 0 2px 8px rgba(44,44,44,0.04);
  transform: translateY(-2px) scale(1.01);
  border-color: #FF8C1A;
}

.section, .features, .services, .testimonials, .cta, .about, .contact, .confirmation, .legal {
  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;
}

/* ---- MEDIA QUERIES ---- */
@media (max-width: 768px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .main-nav, .footer-nav { flex-direction: column; gap: 13px; }
  .section, .features, .services, .testimonials, .cta, .about, .contact, .confirmation, .legal { padding: 20px 6px; }
  .card, .features ul li, .testimonial-card, .services ul li { padding: 14px 8px; }
  .cta { text-align: left; }
}

/* ---- VISUAL HIERARCHY AND SPACING ---- */
.section, .features, .services, .testimonials, .cta, .about, .contact, .confirmation, .legal {
  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;
}

/* ---- NO CSS GRID or COLUMNS ---- */
/* Only flexbox used - grid/column properties are NOT present anywhere. */
