/* --- CSS RESET & NORMALIZE --- */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #f8fafc;
  color: #212E44;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #212E44;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F2B90B;
  outline-offset: 4px;
}
ul, ol, li {
  list-style: none;
  padding: 0;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #e1e7ee;
}
th {
  background: #B4C6D4;
  color: #212E44;
  font-size: 1.1rem;
  font-weight: 700;
}

/* --- VARIABLE DECLARATIONS (with fallbacks) --- */
:root {
  --brand-primary: #212E44;
  --brand-secondary: #B4C6D4;
  --brand-accent: #F2B90B;
  --brand-white: #fff;
  --brand-black: #101522;
  --brand-gray: #f0f2f7;
  --brand-neutral: #e7ecf4;
  --heading-font: 'Roboto', Arial, Helvetica, sans-serif;
  --body-font: 'Open Sans', Arial, Helvetica, sans-serif;
  --shadow-main: 0 4px 24px 0 rgba(33,46,68,0.09);
  --shadow-card: 0 2px 12px 0 rgba(33,46,68,0.08);
  --radius-main: 18px;
  --radius-card: 14px;
  --radius-btn: 32px;
  --duration: 0.25s;
  --mobile-nav-width: 84vw;
  --cookie-banner-height: 70px;
}

/* --- LAYOUT UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--brand-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 32px 0 rgba(33,46,68,0.18);
}

.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;
  background: var(--brand-neutral);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  min-width: 240px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: box-shadow var(--duration), transform var(--duration);
}
.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px 0 rgba(33,46,68,0.15);
}
.testimonial-card p {
  color: #212e44;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #383e4a;
  font-style: italic;
  margin-top: 12px;
}

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

/* --- HEADER / NAVIGATION --- */
header {
  background: var(--brand-primary);
  color: var(--brand-white);
  width: 100%;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 10px 0 rgba(33,46,68,0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0.8rem 18px;
}

header a img {
  height: 40px;
  width: auto;
}

header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-white);
  letter-spacing: .02em;
  padding: 8px 4px;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--brand-accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 13px 30px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px 0 rgba(242,185,11,0.12);
  margin-left: 16px;
  transition: background 0.21s, color 0.2s, box-shadow 0.2s, transform 0.14s;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #fffbe1;
  color: #212E44;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 22px 0 rgba(242,185,11,0.20);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 14px;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  margin-left: 14px;
  z-index: 99;
  transition: background 0.17s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--mobile-nav-width);
  height: 100vh;
  background: var(--brand-white);
  box-shadow: -2px 0 24px 0 rgba(33,46,68,0.11);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 36px;
  padding-left: 30px;
  padding-right: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0.02,0.19,1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: var(--brand-neutral);
  color: var(--brand-primary);
  border-radius: 50%;
  border: none;
  padding: 6px 16px 10px 16px;
  margin-bottom: 18px;
  transition: background 0.17s;
}
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  outline: 2px solid #212E44;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--brand-primary);
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
  background: transparent;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .cta-button {
    padding: 11px 18px;
    font-size: 1rem;
  }
  .feature-grid > div,
  .service-grid > div,
  .usp-grid > div {
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 800px) {
  header nav {
    display: none !important;
  }
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  header .container {
    flex-direction: row;
    padding: 6px 10px;
  }
  .mobile-menu {
    padding-top: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
  line-height: 1.13;
  margin-bottom: 8px;
}
h2, .h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2rem;
  color: var(--brand-primary);
  line-height: 1.15;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.29rem;
  color: #2655ad;
  letter-spacing: .01em;
  line-height: 1.21;
  margin-bottom: 7px;
}
h4, .h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-primary);
  line-height: 1.3;
}
p, li, ul, ol, dd, dt {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #272e44;
  line-height: 1.6;
}
small {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  h1, .h1 {
    font-size: 2.1rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 540px) {
  h1, .h1 {
    font-size: 1.45rem;
  }
  h2, .h2 {
    font-size: 1.19rem;
  }
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  background: linear-gradient(96deg, #F2B90B 38%, #B4C6D4 97%);
  color: #17203b;
  border-bottom-left-radius: 60px;
  box-shadow: 0 4px 20px 0 rgba(33,46,68,0.10);
  margin-bottom: 60px;
  padding: 54px 0 46px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 22px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  text-shadow: 0 2px 10px #fffae1cc;
}
.hero h1 {
  color: #212E44;
  font-size: 2.75rem;
}
.hero p {
  font-size: 1.22rem;
  color: #2d3858;
  font-weight: 500;
}
.hero .cta-button {
  margin-top: 20px;
}

@media (max-width: 800px) {
  .hero {
    padding: 32px 0 30px 0;
    border-bottom-left-radius: 34px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* --- FEATURE SECTIONS (features, usp-grid, etc) --- */
.features, .usp-grid, .feature-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid, .service-grid, .usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid, .service-grid, .usp-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-grid > div, .service-grid > div, .usp-grid > div {
  background: var(--brand-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > div:hover, .service-grid > div:hover, .usp-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(33,46,68,0.14);
  transform: scale(1.015);
}
.feature-grid img, .service-grid img, .usp-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #e7ecf4;
  box-shadow: 0 1px 6px 0 rgba(33,46,68,0.08);
  padding: 6px;
}

/* --- ABOUT / COMPANY / TIMELINE --- */
.company-section, .history-timeline, .mission-values, .team-brief, .work-philosophy {
  background: var(--brand-neutral);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px 0 rgba(33,46,68,0.07);
  padding: 22px 16px;
  margin-bottom: 24px;
  font-size: 1.02rem;
}
.company-section h3, .history-timeline h3, .mission-values h3, .team-brief h3, .work-philosophy h3 {
  color: #0c1732;
  margin-bottom: 10px;
}
.history-timeline ul, .mission-values ul {
  margin-top: 8px;
  padding-left: 20px;
}

/* --- SERVICES & CARDS --- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-grid > div {
  min-width: 210px;
  flex: 1 0 240px;
  background: var(--brand-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow .17s;
}
.service-grid > div:hover {
  box-shadow: 0 5px 20px 0 rgba(242,185,11,0.15);
  background: #fffde6;
}

/* --- PRICING TABLE --- */
.pricing table {
  width: 100%;
  background: var(--brand-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-main);
  overflow-x: auto;
  margin-bottom: 28px;
}
.pricing th, .pricing td {
  border-right: 1px solid #f0f6ff;
}
.pricing tr th:last-child, .pricing tr td:last-child {
  border-right: none;
}
.price-disclaimer {
  background: #fffbe6;
  border-radius: var(--radius-card);
  padding: 8px 16px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: #464b56;
}

/* --- FAQ --- */
.faq {
  background: var(--brand-neutral);
  border-radius: var(--radius-main);
  margin-bottom: 60px;
  padding: 38px 18px;
}
.faq h2 {
  margin-bottom: 22px;
}
.faq dl {
  margin-top: 12px;
}
.faq dt {
  font-weight: 700;
  margin-top: 20px;
  color: #212E44;
  font-size: 1.07rem;
}
.faq dd {
  margin-left: 8px;
  margin-top: 6px;
  margin-bottom: 14px;
  color: #2e3d59;
  font-size: 1rem;
}

/* --- ADDRESS / CONTACT --- */
address {
  font-style: normal;
  font-size: 1.08rem;
  color: #212E44;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.contact-details p, .contact-brief {
  font-size: 1.05rem;
  color: #212E44;
  letter-spacing: 0.01em;
}
.opening-hours ul { margin-top: 8px; }
.opening-hours li { margin-bottom: 4px; }

.contact-preview {
  background: var(--brand-primary);
  color: var(--brand-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 36px 22px;
  margin-bottom: 60px;
}
.contact-preview h2 {
  color: var(--brand-accent);
}
.contact-preview a {
  margin-top: 16px;
  display: inline-block;
}
.contact-preview img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

/* --- TESTIMONIALS --- */
.testimonials, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.testimonial-card {
  background: #fffbe6;
  color: #212E44;
  border-left: 7px solid var(--brand-accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 250px;
}
.testimonial-card p {
  color: #212E44;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #384152;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .testimonial-slider,
  .testimonial-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* --- CTA SECTION --- */
.cta {
  background: linear-gradient(97deg, #F2B90B 38%, #B4C6D4 97%);
  color: #212E44;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 52px 20px 40px 20px;
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta h2 {
  color: #212E44;
  margin-bottom: 16px;
}
.cta .cta-button {
  margin-top: 16px;
}

@media (max-width: 700px) {
  .cta {
    padding: 34px 10px 24px 10px;
  }
}

/* --- LEGAL / DATENSCHUTZ --- */
.legal {
  background: var(--brand-neutral);
  border-radius: var(--radius-main);
  margin-bottom: 54px;
  padding: 38px 18px;
  color: #18213a;
  border-left: 6px solid var(--brand-accent);
  box-shadow: var(--shadow-card);
}
.legal h1, .legal h2, .legal h3 { color: var(--brand-primary); }
.legal ul { margin-top: 8px; margin-bottom: 18px; padding-left: 20px; }

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: var(--brand-white);
  padding: 38px 0 22px 0;
  width: 100%;
  box-shadow: 0 -2px 10px 0 rgba(33,46,68,0.09);
  border-top-left-radius: 34px;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #F2B90B;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
  border-radius: 6px;
  padding: 4px 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-white);
  background: #F2B90B77;
}
footer img {
  height: 32px;
  width: auto;
  margin-bottom: 6px;
}
.contact-brief {
  font-size: 1.02rem;
  color: #B4C6D4;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}
.contact-brief img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: middle;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #212E44;
  color: #fff;
  z-index: 3500;
  min-height: var(--cookie-banner-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 13px 12px;
  box-shadow: 0 -3px 18px 0 rgba(15,20,30,0.20);
  transition: transform 0.36s cubic-bezier(.34,.78,0,.99), opacity .19s;
  opacity: 1;
  gap: 8px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1.03rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  margin-top: 6px;
}
.cookie-banner .cookie-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 9px 20px;
  border-radius: 29px;
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 1rem;
  text-transform: uppercase;
  transition: background 0.18s, color 0.15s, box-shadow .15s;
  background: #F2B90B;
  color: #212E44;
  margin-left: 0;
  border: none;
}
.cookie-banner .cookie-banner-btn.cookie-reject {
  background: #fff;
  color: #212E44;
  border: 1.7px solid #b4c6d4;
}
.cookie-banner .cookie-banner-btn.cookie-settings {
  background: #B4C6D4;
  color: #212E44;
}
.cookie-banner .cookie-banner-btn:hover, .cookie-banner .cookie-banner-btn:focus {
  background: #fffbe1;
  color: #212E44;
  box-shadow: 0 2px 10px 0 #f2b90b29;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,46,68,0.28);
  z-index: 4000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal {
  width: min(96vw, 440px);
  background: #fff;
  color: #212E44;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 4px 28px 0 rgba(15,20,30,0.19);
  padding: 32px 22px 22px 22px;
  margin-bottom: 0;
  position: relative;
  animation: cookie-modal-slidein 0.43s cubic-bezier(.55,0,.49,1.02);
}
@keyframes cookie-modal-slidein {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0);   opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  font-family: var(--heading-font);
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 18px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.cookie-option-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-option-row label {
  font-size: 1.09rem;
  font-weight: 600;
  color: #17203b;
  cursor: pointer;
}
.cookie-option-row input[type="checkbox"] {
  accent-color: #F2B90B;
  width: 19px;
  height: 19px;
  border-radius: 4px;
}
.cookie-option-row .always-on {
  color: #8C987A;
  font-weight: 500;
  font-size: 0.99rem;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 1.7rem;
  border-radius: 50%;
  background: #f2f8fd;
  border: none;
  color: #212E44;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:focus, .cookie-modal .cookie-modal-close:hover {
  background: #F2B90B;
  color: #212E44;
}

/* --- MISC SPACING / UTILITIES --- */
.mt-4 { margin-top: 4px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-18 { margin-bottom: 18px !important; }
.mb-24 { margin-bottom: 24px !important; }
.p-0 { padding: 0 !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }

/* --- RESPONSIVE FLEX ADJUSTMENTS --- */
@media (max-width: 900px) {
  .content-grid, .feature-grid, .service-grid, .usp-grid, .testimonial-slider, .testimonial-list, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
/* Specific flex direction on mobile for text-image sections */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .about-preview, .contact-preview, .cta, .features, .company-section, .footer-nav, .card-container, .service-grid, .usp-grid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --- SCROLLBAR STYLES FOR MODERN LOOK --- */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 13px;
  background: #f0f2f7;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #B4C6D4;
  border-radius: 16px;
}

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
a, button, .cta-button, .card, th, td {
  transition: background 0.18s, color 0.13s, box-shadow 0.18s, border-color 0.18s;
}

/* --- VIBRANT ENERGETIC VISUAL EFFECTS --- */
.card, .feature-grid > div, .service-grid > div, .usp-grid > div, .testimonial-card {
  border-bottom: 4px solid #F2B90B22;
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover {
  border-bottom: 4px solid #F2B90B;
  background: #fffbe1;
}
.cta-button {
  box-shadow: 0 2px 15px 0 #F2B90B44;
  animation: button-pop 1.3s cubic-bezier(0.3,1.36,0,1.22) forwards;
}
@keyframes button-pop {
  0% { transform: scale(0.98); }
  60% { transform: scale(1.045); }
  100% { transform: scale(1.00); }
}

/* --- THANK YOU PAGE SPECIFIC --- */
.confirmation {
  background: #fffbe1;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 64px 30px 40px 30px;
  margin-top: 46px;
  text-align: center;
}
.confirmation h1 { color: #F2B90B; }
.confirmation .cta-button {
  margin-top: 22px;
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .cta, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #111; }
}
