/* --- CSS RESET & NORMALIZE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  background: #EEEEEE;
  color: #222831;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
a {
  color: #222831;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.6,-0.28,.74,.05);
}
a:hover, a:focus {
  color: #FFD369;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #222831;
  letter-spacing: 0.01em;
  margin-bottom: 0.75em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- STRUCTURED GEOMETRIC SECTION SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(34,40,49,0.06);
}
main > section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,40,49,0.06);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(34,40,49,0.12);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: #EEEEEE;
  border-radius: 12px;
  border-left: 6px solid #FFD369;
}
.team-bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 24px;
  min-width: 220px;
  box-shadow: 0 2px 10px 0 rgba(34,40,49,0.05);
}

/* --- HEADER --- */
header {
  background: #222831;
  padding: 0;
  box-shadow: 0 2px 8px 0 rgba(34,40,49,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #FFD369;
  color: #222831;
}
header .cta {
  margin-left: 16px;
}
header img {
  height: 38px;
  width: auto;
}
header .mobile-menu-toggle {
  display: none;
  background: #FFD369;
  color: #222831;
  border-radius: 6px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s, color 0.2s;
  z-index: 1001;
}
header .mobile-menu-toggle:focus, header .mobile-menu-toggle:hover {
  background: #222831;
  color: #FFD369;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,40,49, 0.95);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 1700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFD369;
  color: #222831;
  border: none;
  font-size: 2rem;
  padding: 10px 20px;
  border-radius: 0 0 12px 0;
  align-self: flex-end;
  margin: 14px 0 0 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding: 48px 36px 0 36px;
  font-family: 'Oswald', Arial, sans-serif;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-radius: 3px;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD369;
  background: none;
}
@media (max-width: 990px) {
  header nav,
  header .cta {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
}
/* Overlays main navigation when open */
@media (max-width: 990px) {
  .mobile-menu {
    display: flex;
  }
}

/* --- FOOTER --- */
footer {
  background: #222831;
  padding-top: 24px;
  padding-bottom: 18px;
  color: #fff;
  font-size: 1rem;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  color: #FFD369;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover,
footer nav a:focus {
  background: #FFD369;
  color: #222831;
}
footer span {
  font-size: 0.99em;
  opacity: 0.78;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.05rem;
  font-weight: 700;
  background: #FFD369;
  color: #222831;
  border-radius: 10px;
  padding: 16px 34px;
  margin-top: 8px;
  border: 2px solid #FFD369;
  box-shadow: 0 2px 10px rgba(34,40,49,0.07);
  transition: background 0.19s, color 0.19s, border 0.19s, box-shadow 0.2s;
}
.cta.primary {
  background: #222831;
  color: #FFD369;
  border: 2px solid #FFD369;
}
.cta:hover, .cta:focus {
  background: #FFD369;
  color: #222831;
  box-shadow: 0 4px 24px rgba(34,40,49,0.13);
  border-color: #FFD369;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD369;
  color: #222831;
}

/* --- LISTS WITH ICONS --- */
ul li, ol li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.1rem;
}
ul li img {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-top: 0.2em;
  flex-shrink: 0;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #EEEEEE;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(34,40,49,0.07);
  margin-bottom: 20px;
  color: #222831;
  transition: box-shadow 0.18s, background 0.3s;
  border-left: 5px solid #FFD369;
  min-width: 0;
}
.testimonial-card strong {
  color: #222831;
  margin-left: auto;
  font-size: 1.08em;
  font-family: 'Oswald', Arial, sans-serif;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(34,40,49,0.10);
  background: #fffbe8;
}

/* --- CONTACT & OTHER CUSTOM BLOCKS --- */
.contact-information {
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(34,40,49,0.07);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.customer-support-highligt {
  background: #FFD369;
  color: #222831;
  border-radius: 12px;
  padding: 18px 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(34,40,49,0.05);
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,40,49,0.05);
  max-width: 350px;
}
.contact-form-placeholder {
  background: #eeeeee;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1.09rem;
  color: #222831;
}

/* --- SECTION .text-section ... for longform --- */
.text-section h2, .text-section h3 {
  margin-top: 24px;
}
.text-section p {
  margin-bottom: 16px;
}
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}
.text-section ul li {
  margin-bottom: 10px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 800px) {
  .container {
    max-width: 98vw;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item {
    width: 100%;
    min-width: 0;
  }
  .section {
    padding: 18px 5px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .cta, .cta.primary {padding: 12px 18px;font-size:1rem;}
  .section {padding: 10px 0;}
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222831;
  color: #FFD369;
  padding: 22px 8vw 22px 8vw;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 12px rgba(34,40,49,0.14);
  font-size: 1.11rem;
  gap: 18px;
  animation: cookieBannerAppear 0.28s cubic-bezier(.67,-0.39,.65,1.37);
}
@keyframes cookieBannerAppear {0%{transform: translateY(100%);} 100%{transform:translateY(0);}}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  background: #FFD369;
  color: #222831;
  border-radius: 12px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  box-shadow: 0 1px 6px rgba(34,40,49,0.07);
  transition: background 0.17s, color 0.17s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #fff;
  color: #222831;
  outline: 2px solid #FFD369;
}
.cookie-btn.secondary {
  background: transparent;
  color: #FFD369;
  border: 2px solid #FFD369;
  box-shadow: none;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #FFD369;
  color: #222831;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,40,49, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.22s;
  animation: fadeInModal 0.28s cubic-bezier(.67,-0.39,.65,1.37);
}
@keyframes fadeInModal {0%{opacity:0;} 100%{opacity:1;}}
.cookie-modal {
  background: #fff;
  color: #222831;
  border-radius: 16px;
  padding: 38px 28px 28px 28px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 4px 36px 0 rgba(34,40,49,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.54rem;
  color: #222831;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category {
  padding: 12px 0;
  border-bottom: 1px solid #EEEEEE;
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFD369;
  width: 21px;
  height: 21px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 20px;
  background: none;
  color: #222831;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- GEOMETRIC STRUCTURED SHAPES & EFFECTS --- */
.section, .testimonial-card, .team-bio,.feature-item, .contact-information {
  border-radius: 18px 46px 18px 18px/18px 18px 42px 18px;
}
.card, .cookie-modal, .map-placeholder, .customer-support-highligt {
  border-radius: 36px 8px 36px 8px/18px 32px 18px 32px;
}

/* --- ANGULAR FONT STYLES AND TYPOGRAPHY SCALE --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
}

/* --- VISUAL ELEMENTS (HR, BORDERS) --- */
hr {
  border: none;
  border-bottom: 2px solid #FFD369;
  margin: 32px 0 28px 0;
  width: 42px;
  border-radius: 3px;
}

/* --- GENERAL SPACING & HIERARCHY --- */
main {
  padding-bottom: 64px;
}
.section h1, .section h2, .section h3 {
  margin-bottom: 2px;
}
.section p, .section ul, .section ol {
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .content-wrapper, .content-grid, .card-container {
    gap: 12px;
  }
  .section {
    margin-bottom: 24px;
    padding: 8px 0;
  }
}

/* --- TRANSITIONS, HOVER EFFECTS & MICRO-INTERACTIONS --- */
.card, .cta, .testimonial-card, .team-bio, .feature-item, .cookie-modal, .cookie-consent-banner, .map-placeholder, .customer-support-highligt {
  transition: box-shadow 0.22s, background 0.25s, color 0.16s, border 0.16s;
}
.card:hover, .feature-item:hover, .team-bio:hover {
  box-shadow: 0 10px 36px 0 rgba(34,40,49,0.19), 0 0.5px 2px 0 rgba(34,40,49,0.03);
}
.cta:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* --- FOCUS STATES FOR ACCESSIBILITY --- */
a:focus-visible, .cta:focus-visible, .mobile-menu-close:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #FFD369;
  outline-offset: 3px;
}

/* --- Z-INDEX MANAGEMENT --- */
header { z-index: 120; position: relative; }
.mobile-menu { z-index: 1700; }
.cookie-consent-banner { z-index: 1600; }
.cookie-modal-overlay { z-index: 2000; }

/* --- EXTRAS: BRANDING & MODERNITY --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #FFD369;
  border-radius: 14px;
}
::-webkit-scrollbar-track {
  background: #EEEEEE;
}

/* --- CLASSES FROM HTML - ENSURED ALL MATCH --- */
/* .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item, .team-bio, .contact-information, .map-placeholder, .customer-support-highligt, .card-content, .cookie-btn, .cookie-modal, .cookie-modal-close, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav, .cta, .cookie-consent-banner, .cookie-modal-overlay, .cookie-categories, .cookie-category, .cookie-modal-actions, .content-wrapper, .text-section */