/* ==== CSS 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #fff;
  color: #1A2634;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  color: #1A2634;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 18px;
}

/* === GENERAL UTILITY CLASSES & SPACING ======================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26,38,52,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 330px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(26,38,52,0.12);
}

.feature-grid, .card-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1.5px 7px rgba(26,38,52,0.05);
  gap: 15px;
  padding: 24px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 210px;
  transition: box-shadow 0.2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover {
  box-shadow: 0 4px 16px rgba(26,38,52,0.10);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #E9ECEF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,38,52,0.06);
  margin-bottom: 20px;
  gap: 16px;
  min-width: 220px;
  max-width: 520px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(26,38,52,0.14);
}
.testimonial-card p {
  color: #1A2634;
  font-size: 1rem;
  margin-bottom: 0;
}
.testimonial-meta {
  color: #555;
  font-size: 0.97rem;
  font-style: italic;
  margin-top: 4px;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.contact-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 1.06rem;
  margin-bottom: 20px;
  margin-top: 6px;
}
.map-hint {
  background: #E9ECEF;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 24px;
}

.price {
  background: #F6A800;
  color: #fff;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.92rem;
  margin-left: 8px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* ==== HERO SECTION & CTA BUTTONS ========================== */
.hero-section {
  background: #1A2634;
  color: #fff;
  padding: 64px 0 50px 0;
  margin-bottom: 40px;
}
.hero-section h1,
.hero-section h2 {
  color: #fff;
}
.hero-section p {
  color: #E9ECEF;
  font-size: 1.18rem;
}
.hero-section .cta-primary {
  margin-top: 28px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 7px;
  font-size: 1.09rem;
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  padding: 13px 32px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 1.5px 7px rgba(26,38,52,0.08);
  margin-right: 14px;
  margin-bottom: 10px;
}
.cta-primary {
  background: #F6A800;
  color: #1A2634;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1A2634;
  color: #fff;
  box-shadow: 0 4px 17px rgba(26,38,52,0.18);
}
.cta-secondary {
  background: #fff;
  color: #F6A800;
  border: 1.5px solid #F6A800;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F6A800;
  color: #1A2634;
}

.navigation-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.navigation-links a {
  font-size: 1.09rem;
  color: #1A2634;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.navigation-links a:hover {
  background: #F6A800;
  color: #fff;
}

/* ==== HEADER & NAVIGATION ================================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(26,38,52,0.03);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 18px 10px;
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-size: 1.05rem;
}
.main-nav a {
  padding: 6px 13px;
  border-radius: 5px;
  color: #1A2634;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E9ECEF;
  color: #F6A800;
}
.main-nav .cta-primary {
  margin-left: 16px;
  padding: 8px 22px;
  font-size: 1rem;
}
.main-nav img {
  height: 43px;
  width: auto;
  margin-right: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #1A2634;
  border: none;
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: auto;
  z-index: 200;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F6A800;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1A2634;
  color: #fff;
  transform: translateX(-104%);
  transition: transform 0.31s cubic-bezier(.34,1.61,.7,1);
  opacity: 0.99;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding-top: 38px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 25px rgba(26,38,52,0.2);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.15rem;
  border: none;
  align-self: flex-end;
  margin-right: 24px;
  margin-top: 0;
  margin-bottom: 30px;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6A800;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-size: 1.19rem;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  padding: 12px 10px;
  border-radius: 6px;
  font-weight: 400;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #F6A800;
  color: #1A2634;
}

/* ==== FOOTER ====================== */
footer {
  background: #fff;
  border-top: 1.5px solid #E9ECEF;
  padding: 40px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #1A2634;
  font-size: 1rem;
  opacity: 0.82;
  transition: color 0.18s;
  border-radius: 5px;
  padding: 4px 10px;
}
.footer-nav a:hover {
  color: #F6A800;
  background: #E9ECEF;
}
.footer-info {
  color: #555;
  opacity: .78;
  font-size: 0.96rem;
  text-align: center;
  padding-top: 6px;
}

/* ==== COOKIE CONSENT BANNER & MODAL ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid #E9ECEF;
  box-shadow: 0 -4px 16px rgba(26,38,52,0.10);
  z-index: 1500;
  padding: 25px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookie-slide 0.45s cubic-bezier(.34,1.61,.7,1);
}
@keyframes cookie-slide {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
  color: #1A2634;
  font-size: 1.08rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-accept {
  background: #F6A800;
  color: #1A2634;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #1A2634;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #fff;
  border: 1.2px solid #F6A800;
  color: #F6A800;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #F6A800;
  color: #1A2634;
}
.cookie-banner .cookie-settings {
  background: #E9ECEF;
  color: #1A2634;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #1A2634;
  color: #fff;
}
.cookie-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1.5px 7px rgba(26,38,52,0.05);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1600;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,38,52,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.25s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  width: 97vw;
  padding: 32px 28px;
  box-shadow: 0 6px 32px rgba(26,38,52,0.23);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #1A2634;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #E9ECEF;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1.5px 6px rgba(26,38,52,0.08);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  transform: translateX(16px);
  background: #F6A800;
}
.cookie-toggle input:checked ~ .cookie-toggle {
  background: #F6A800;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #F6A800;
  color: #1A2634;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal button.secondary {
  background: #E9ECEF;
  color: #1A2634;
}
.cookie-modal button.secondary:hover,
.cookie-modal button.secondary:focus {
  background: #1A2634;
  color: #fff;
}
.cookie-modal button.primary:hover,
.cookie-modal button.primary:focus {
  background: #1A2634;
  color: #fff;
}

/* ==== TYPOGRAPHY SCALE & HEADINGS ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.text-section h2,
.text-section h3,
.text-section h4 {
  margin-top: 28px;
  margin-bottom: 10px;
}
.text-section ul, .text-section ol {
  margin-bottom: 8px;
}

/* ==== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 11px;
    padding-right: 11px;
  }
}
@media (max-width: 920px) {
  .main-nav {
    font-size: 1rem;
    gap: 13px;
  }
  .content-wrapper, .feature-grid, .card-grid, .features, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 16px;
  }
  .feature-grid, .content-grid, .features, .card-grid {
    flex-direction: column !important;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 8px 18px 12px;
    font-size: 0.97rem;
  }
  .hero-section {
    padding: 40px 0 26px 0;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 39px;
  }
  .footer-nav {
    gap: 18px;
    font-size: 0.98rem;
  }
  .contact-summary {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card {
    min-width: 90vw;
    max-width: 100vw;
    margin-bottom: 18px;
    padding: 20px 12px;
  }
  .feature-item {
    min-width: 210px;
    padding: 18px 10px 15px 10px;
  }
}
@media (max-width: 550px) {
  html {
    font-size: 92%;
  }
  .cookie-banner {
    padding: 16px 8px 14px 8px;
    font-size: 0.99rem;
  }
  .hero-section {
    padding: 28px 0 16px 0;
  }
  footer {
    padding: 20px 0 10px 0;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* ==== MICRO-INTERACTIONS & TRANSITIONS ============= */
.card, .feature-item, .testimonial-card, .cta-primary, .cta-secondary, .navigation-links a, .main-nav a, .mobile-nav a, .cookie-banner button, .cookie-modal button {
  transition: box-shadow 0.18s, background 0.20s, color 0.20s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
}
.feature-item:hover {
  transform: translateY(-1px) scale(1.01);
}
.cta-primary:active, .cta-secondary:active, .cookie-banner button:active, .cookie-modal button:active {
  transform: scale(0.97);
}

/* ==== MISCELLANEOUS ======================== */
::-webkit-scrollbar {
  width: 11px;
  background: #E9ECEF;
}
::-webkit-scrollbar-thumb {
  background: #D8DDE2;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F6A800;
}

hr {
  border: none;
  border-top: 1.5px solid #E9ECEF;
  margin: 24px 0;
}

/* Accessibility: Focus states */
:focus-visible {
  outline: 2.5px solid #F6A800;
  outline-offset: 1.5px;
}

/* ==== END ==== */
