/* --- 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #f9fafc;
  color: #163f5b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #fa9d1b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #163f5b;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  background: none;
  border: none;
}
button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #fa9d1b;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  color: #163f5b;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.05;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, .text-section ul, .text-section ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 16px;
  color: #163f5b;
}
strong {
  color: #fa9d1b;
  font-weight: 700;
}
.text-section strong {
  font-size: 1.05rem;
}

/* --- LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #163f5b;
  box-shadow: 0 2px 14px rgba(22, 63, 91, 0.11);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 8px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05em;
  color: #f9fafc;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.18s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #fa9d1b;
  color: #163f5b;
}
header nav a.cta {
  background: #fa9d1b;
  color: #163f5b;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(250, 157, 27, 0.11);
  text-shadow: none;
  border: 2px solid #fa9d1b;
  margin-left: 6px;
  transition: box-shadow 0.2s, background 0.16s, color 0.16s;
}
header nav a.cta.primary:hover, header nav a.cta.primary:focus {
  background: #f9fafc;
  color: #fa9d1b;
  border-color: #fa9d1b;
  box-shadow: 0 2px 20px #fa9d1b43;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fa9d1b;
  color: #163f5b;
  border: none;
  font-size: 2.3rem;
  border-radius: 8px;
  padding: 2px 14px;
  cursor: pointer;
  position: relative;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 300;
}
.mobile-menu-toggle:active {
  background: #f1b43a;
  box-shadow: 0 1px 7px #163f5b42;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #163f5b;
  color: #f9fafc;
  z-index: 500;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.53,1.6,.37,1.01);
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 32px #0003;
}
.mobile-menu-close {
  background: transparent;
  color: #fa9d1b;
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  z-index: 510;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fa9d1b33;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 90px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  color: #f9fafc;
  padding: 12px 22px;
  width: 100%;
  text-align: left;
  border-radius: 0;
  border-left: 5px solid transparent;
  transition: background 0.17s, color 0.17s, border-color 0.18s;
}
.mobile-nav a.cta, .mobile-nav a[href$="kontakt.html"] {
  background: #fa9d1b;
  color: #163f5b;
  font-weight: 700;
  border-radius: 20px;
  margin: 22px 0 10px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fa9d1b19;
  color: #fa9d1b;
  border-left: 5px solid #fa9d1b;
}

@media (max-width: 1050px) {
  header nav {
    gap: 10px;
  }
  .container { padding: 0 4vw; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
@media (max-width: 860px) {
  header .container { padding: 0 6vw; }
  .container { padding: 0 6vw; }
}
@media (max-width: 768px) {
  header .container nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}


/* --- SECTIONS, CARDS & SPACING (SPACING PATTERNS MANDATORY) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f9fafc;
  border-radius: 28px;
  box-shadow: 0 2px 32px rgba(250,157,27,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 24px #163f5b1c;
  padding: 30px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 36px #fa9d1b33;
  transform: translateY(-6px) scale(1.025) rotate(-0.5deg);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px #163f5b1a;
  margin-bottom: 24px;
  border-left: 8px solid #fa9d1b;
  position: relative;
  transition: box-shadow 0.18s, transform 0.11s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px #fa9d1b33;
  transform: translateY(-3px) scale(1.03);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #163f5b;
  line-height: 1.5;
  font-style: italic;
}
.testimonial-footer {
  font-family: Oswald, Arial, sans-serif;
  font-size: 1.07rem;
  color: #fa9d1b;
  font-style: normal;
  font-weight: 600;
  align-self: flex-end;
}
.feature-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section{
  font-size: 1.03rem;
}

/* --- HERO --- */
.hero {
  padding: 56px 0 35px 0;
  background: linear-gradient(95deg,#fff 60%,#fa9d1b13 100%);
  position: relative;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 3px 32px #fa9d1b10;
  overflow: hidden;
  animation: heroPop 1.1s cubic-bezier(.25,1.5,.4,1);
}
@keyframes heroPop {
  0%   { opacity: 0; transform: translateY(28px) scale(.96) rotate(-1deg);}
  100% { opacity: 1; transform: none; }
}
.hero h1 {
  color: #fa9d1b;
  font-size: 2.8rem;
  margin-bottom: 18px;
  letter-spacing: .01em;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-shadow: 2px 3px 0 #163f5b22;
}
.hero p {
  color: #163f5b;
  font-size: 1.17rem;
  margin-bottom: 30px;
  max-width: 600px;
}

/* --- SECTION TYPOGRAPHY, GENERIC CARDS, CTA BUTTONS --- */
h2 {
  color: #163f5b;
  font-size: 2.2rem;
  text-shadow: 0 2px 0 #fa9d1b13;
}
h3 {
  color: #fa9d1b;
  font-size: 1.29rem;
}
.cta, .cta.primary {
  display: inline-block;
  padding: 13px 30px;
  font-size: 1.17rem;
  font-family: 'Oswald', Arial, sans-serif;
  background: #fa9d1b;
  color: #163f5b;
  border-radius: 25px;
  border: 2px solid #fa9d1b;
  box-shadow: 0 6px 28px #fa9d1b33;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.12s, color 0.15s, box-shadow .17s, border .12s, transform 0.17s;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #fa9d1b;
  border: 2px solid #fa9d1b;
  box-shadow: 0 8px 36px #fa9d1b38;
  outline: none;
  transform: scale(1.04) rotate(-1.2deg);
}

/* --- FEATURE GRID --- */
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 36px 0 0 0;
}
.feature_grid li {
  flex: 1 1 min(240px,100%);
  min-width: 220px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px #fa9d1b18;
  list-style: none;
  padding: 26px 16px 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-left: 7px solid #fa9d1b44;
  transition: box-shadow 0.17s, transform 0.13s;
  margin-bottom: 20px;
  position: relative;
}
.feature_grid li:hover, .feature_grid li:focus-within {
  box-shadow: 0 8px 38px #163f5b22;
  transform: translateY(-6px) scale(1.02) rotate(1deg);
}
.feature_grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 6px;
}
.feature_grid h3 {
  font-size: 1.13rem;
  color: #fa9d1b;
  margin-bottom: 2px;
  font-family: 'Oswald', Arial, sans-serif;
}
.feature_grid p {
  color: #163f5b;
  font-size: 1rem;
  text-align: center;
}

/* --- HOME & SERVICE CARD LISTS --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 38px 0 18px 0;
}
.service-item {
  flex: 1 1 min(250px,100%);
  min-width: 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px #fa9d1b18;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 18px;
  border-left: 6px solid #fa9d1b42;
  transition: box-shadow 0.18s, transform 0.12s;
  margin-bottom: 20px;
  position: relative;
}
.service-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 7px;
}
.service-item h3 {
  color: #fa9d1b;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.service-item p {
  color: #163f5b;
  font-size: 1rem;
}
.price {
  font-family: 'Oswald', Arial, sans-serif;
  color: #163f5b;
  background: #fa9d1b33;
  border-radius: 14px;
  padding: 6px 14px;
  font-size: 1.11rem;
  font-weight: 600;
  margin-top: 7px;
  margin-left: -5px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 32px #fa9d1b2c;
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}

/* --- GENERIC BUTTON STYLES --- */
button, .btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  background: #fa9d1b;
  color: #163f5b;
  border-radius: 20px;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform .14s;
  box-shadow: 0 2px 14px #fa9d1b36;
  font-weight: 600;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #fdf4e1;
  color: #fa9d1b;
  transform: scale(1.06) rotate(-1deg);
}

/* --- TEAM PHOTO PLACEHOLDER DYNAMIC ANIMATION --- */
.team-photo-placeholder {
  background: repeating-linear-gradient(135deg, #fa9d1b 0 10%, #47d7cd 10% 20%, #f9fafc 20% 30%);
  border-radius: 32px;
  width: 100%;
  min-height: 165px;
  margin: 0 0 18px 0;
  animation: teamPulse 1.8s infinite alternate cubic-bezier(.44,1.97,.42,.96);
}
@keyframes teamPulse {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.04) drop-shadow(0 0 6px #fa9d1b55); }
}

/* --- FOOTER --- */
footer {
  background: #163f5b;
  color: #f9fafc;
  padding: 44px 0 32px 0;
  border-radius: 34px 34px 0 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
footer nav a {
  color: #fa9d1b;
  background: transparent;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05em;
  margin: 0 4px;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #fa9d1b;
  color: #163f5b;
}
footer img {
  height: 48px;
  margin-bottom: 8px;
}
.brand-contact-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: #f9fafc;
  margin-top: 10px;
  text-align: center;
  opacity: 0.85;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #163f5b;
  box-shadow: 0 -2px 16px #fa9d1b22;
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 999;
  border-radius: 18px 18px 0 0;
  animation: cookieSlideUp 0.8s cubic-bezier(.22,1.12,.38,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 3px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-consent-banner button {
  font-size: 1.05rem;
  border-radius: 13px;
  min-width: 112px;
  padding: 9px 16px;
  border: 2px solid #fa9d1b;
  background: #fa9d1b;
  color: #163f5b;
  margin-right: 0;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background .14s, color .15s, border .14s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #fff2e1;
  color: #fa9d1b;
}
.cookie-consent-banner .cookie-btn-settings {
  background: #fff;
  color: #fa9d1b;
  border-color: #fa9d1b;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1001;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22, 63, 91, .33);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieFader .35s;
}
@keyframes cookieFader {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #163f5b;
  border-radius: 22px;
  box-shadow: 0 5px 36px #fa9d1b30;
  padding: 34px 24px 28px 24px;
  max-width: 420px;
  min-width: 0;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalPop .32s cubic-bezier(.57,1.6,.43,1);
}
@keyframes cookieModalPop {
  from { transform: scale(.88) translateY(29px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.31rem;
  color: #fa9d1b;
  margin-bottom: 5px;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #163f5b;
}
.cookie-category input[type="checkbox"] {
  accent-color: #fa9d1b;
  width: 19px;
  height: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fa9d1b44;
  color: #fa9d1b;
  border: none;
  font-size: 1.25rem;
  border-radius: 16px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #fa9d1b77; color: #163f5b; }

.cookie-modal .cookie-modal-footer {
  margin-top: 6px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-footer button {
  border-radius: 13px;
  font-size: 1.03rem;
  padding: 8px 17px;
  border: 2px solid #fa9d1b;
  background: #fa9d1b;
  color: #163f5b;
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  transition: background .14s, color .15s, border .13s;
}
.cookie-modal .cookie-modal-footer button:hover, .cookie-modal .cookie-modal-footer button:focus {
  background: #fff2e1;
  color: #fa9d1b;
}

@media (max-width: 650px) {
  .cookie-modal {
    padding: 22px 7vw 23px 7vw;
    max-width: 95vw;
    font-size: 0.98rem;
  }
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1000px) {
  .feature_grid, .service-list, .card-container, .content-grid {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .content-wrapper { max-width: 96vw; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.08rem; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.35rem; }
  .service-item, .feature_grid li, .testimonial-card, .card {
    padding: 18px 12px 22px 12px;
  }
  .section {
    margin-bottom: 32px;
    padding: 28px 5px;
  }
  .feature_grid, .service-list, .card-container, .content-grid {
    gap: 11px;
  }
  .content-wrapper {
    gap: 15px;
    padding: 0 2vw;
    max-width: 97vw;
  }
  .testimonial-card { font-size: .99rem; }
  .testimonial-footer { font-size: .93rem; }
  footer { margin-top: 50px; }
}
@media (max-width: 650px) {
  .hero {
    padding: 34px 0 17px 0;
  }
  .team-photo-placeholder {
    min-height: 88px;
  }
  .content-wrapper {
    max-width: 100vw;
    padding: 0 2vw;
  }
  ul, ol { margin-left: 0.8em; }
}

@media (max-width: 600px) {
  .container { max-width: 100vw; padding: 0 2vw; }
  .feature_grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature_grid li, .service-item, .testimonial-card, .card {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .content-wrapper, .container { padding: 0 2vw; }
}

@media (max-width: 530px) {
  h1 { font-size: 1.26rem; }
  .cta, .cta.primary { font-size: .99rem; padding: 11px 13px; }
  header .logo img, footer img { height: 36px; }
}

@media (max-width: 420px) {
  h1, h2 { font-size: 1em; }
  .hero { border-radius: 0; }
  .section { border-radius: 0; }
  footer { border-radius: 0; }
}

/* --- MICRO-ANIMATIONS, ICONS, EXTRAS --- */
.feature_grid li::after, .service-item::after {
  content: '';
  display: block;
  position: absolute;
  right: 18px; bottom: 15px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fa9d1b33;
  animation: cardBounce 2.1s infinite alternate cubic-bezier(.44,1.97,.42,.96);
  z-index: 0;
}
@keyframes cardBounce {
  from { transform: scale(.97) translateY(0); opacity: .6; }
  to   { transform: scale(1.09) translateY(-7px); opacity: 1; }
}

/* --- SECTION AND CARD FLEXBOX ENFORCEMENT --- */
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item, .feature_grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
}
.section, .card-container, .content-grid, .feature_grid, .service-list {
  flex-direction: row;
  gap: 20px;
}
.text-image-section, .testimonial-card, .feature-item {
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .section, .card-container, .card, .content-grid, .feature_grid, .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
}

/* --- ENSURE ALL MANDATORY SPACING --- */
.section, .card, .card-container > *, .feature_grid > *, .service-list > *, .testimonial-card {
  margin-bottom: 20px;
}

/* --- ACCESSIBILITY */
:focus {
  outline: 2px solid #fa9d1b;
  outline-offset: 2px;
}

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar {
  width: 9px;
  background: #fa9d1b44;
}
::-webkit-scrollbar-thumb {
  background: #fa9d1b;
  border-radius: 7px;
}

/* --- UTILITY CLASSES --- */
.bg-primary { background: #163f5b !important; color: #f9fafc !important; }
.bg-accent  { background: #fa9d1b !important; color: #163f5b !important; }
.centered   { text-align: center !important; }

/* --- END --- */
