/* -------------------------------------------------------
   GLOBAL CSS RESET & FONT IMPORTS (Luxury Premium Design)
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F9FA;
  color: #1D3557;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
  /* Subtle luxury texture as fallback: */
  background-color: #F8F9FA;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFB300;
  outline-offset: 2px;
}
strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.3;
}

/* -----------------------------------
    CONTAINER & GENERAL SPACING
------------------------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 22px 0 rgba(29, 53, 87, 0.05);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0;
}

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

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* ----------------------------------
   HEADER & NAVIGATION STYLES
----------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  box-shadow: 0 3px 18px 0 rgba(29,53,87,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}
header .container a img {
  height: 44px;
  margin-right: 15px;
}
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  color: #1D3557;
  text-transform: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  position: relative;
  transition: color 0.25s;
  padding: 8px 2px;
}
nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #FFB300;
  position: absolute;
  left: 0; bottom: 0;
  transition: width 0.2s;
  border-radius: 1px;
}
nav a:hover, nav a:focus {
  color: #FFB300;
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}

.cta-btn {
  background: #FFB300;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(29, 53, 87, 0.06);
  margin-left: 16px;
  transition: background 0.2s, box-shadow 0.2s, color 0.15s;
  letter-spacing: 0.04em;
  outline: none;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1D3557;
  color: #FFB300;
  box-shadow: 0 2px 24px 0 rgba(255,179,0,0.17);
  text-decoration: none;
}

@media (max-width: 1024px) {
  nav {
    gap: 20px;
  }
  .cta-btn {
    padding: 10px 20px;
    margin-left: 10px;
  }
  header .container a img {
    height: 39px;
  }
}

@media (max-width: 830px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 66px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 9px 16px;
  }
  nav {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  header .container nav,
  .cta-btn {
    display: none !important;
  }
}

/* --------------------------------------
   MOBILE MENU / HAMBURGER NAVIGATION
---------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 17px;
  right: 18px;
  z-index: 1200;
  background: #fff;
  color: #1D3557;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 16px 0 rgba(29,53,87,0.08);
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFB300;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2002;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.6,0.08,0.34,1.12);
  box-shadow: 12px 0 36px -8px rgba(29,53,87, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 38px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: none;
  color: #1D3557;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 2010;
  padding: 6px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFB300;
}
.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #1D3557;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFB300;
  color: #fff;
  outline: none;
}

/* Ensuring mobile nav covers everything */
@media (max-width: 768px) {
  body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
  }
}

/* -------------------------------------
   HERO, CARDS, SERVICES GRID
---------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(29,53,87,0.09);
  padding: 28px 22px 24px 22px;
  min-width: 250px;
  max-width: 310px;
  flex: 1 1 270px;
  border: 1.5px solid #ECECEC;
  transition: box-shadow 0.17s, border 0.18s, transform 0.17s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: brightness(0.88) sepia(1) hue-rotate(23deg) saturate(12) brightness(1.32);
}
.feature-item h3 {
  font-size: 1.3rem;
  color: #1D3557;
  margin-bottom: 4px;
}
.feature-item p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #303841;
  margin-bottom: 0;
}
.feature-item strong {
  color: #FFB300;
  font-size: 1.08em;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 30px 0 rgba(255,179,0,0.18), 0 3px 24px 0 rgba(29,53,87,0.13);
  border-color: #FFB300;
  transform: translateY(-4px) scale(1.016);
}

@media (max-width: 900px) {
  .feature-grid {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 20px 12px 18px 18px;
    border-radius: 11px;
  }
}

/* -----------------------------------------------
   SERVICE, ARTICLE, CARD LIST & GRIDS (NO GRID)
------------------------------------------------- */
.service-list, .usps, .workshop-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.service-list li, .usps li, .workshop-list li {
  background: #fff;
  border: 1.3px solid #ECECEC;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(29,53,87,0.06);
  padding: 18px 22px;
  font-size: 1rem;
  color: #1D3557;
  margin-bottom: 0;
  transition: box-shadow 0.15s, border 0.14s, background 0.2s;
}
.service-list li strong, .workshop-list li strong {
  color: #FFB300;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-list li:hover, .usps li:hover, .workshop-list li:hover {
  border-color: #FFB300;
  box-shadow: 0 4px 24px 0 rgba(255,179,0,0.11);
  background: #FFF8E1;
}

.knowledge-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.knowledge-articles-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(29,53,87,0.053);
  padding: 20px 18px 17px 18px;
  min-width: 246px;
  flex: 1 1 260px;
  border: 1.2px solid #ECECEC;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.13s;
}
.knowledge-articles-grid > div:hover {
  border-color: #FFB300;
  box-shadow: 0 5px 18px 0 rgba(255,179,0,0.09);
}
@media (max-width:650px) {
  .knowledge-articles-grid {
    flex-direction: column;
    gap: 13px;
  }
  .knowledge-articles-grid > div {
    min-width: auto;
    flex: 1 1 100%;
    border-radius: 9px;
  }
}

.faq-snippets, .quick-tips {
  background: #fff;
  border-radius: 13px;
  margin-bottom: 16px;
  box-shadow: 0 1px 7px 0 rgba(29,53,87,0.043);
  padding: 16px 18px;
  border: 1.1px solid #ECECEC;
}
.faq-snippets h4, .quick-tips h4 {
  margin-bottom: 10px;
  color: #1D3557;
}
.faq-snippets ul, .quick-tips ul {
  padding-left: 14px; /* visually pleasing bullets */
}
.faq-snippets li, .quick-tips li {
  font-size: 1rem;
  color: #1D3557;
  margin-bottom: 8px;
}

/* ------------------------------------
   TESTIMONIALS SECTION & CARDS
-------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  border-radius: 18px;
  background: #fffbe9;
  box-shadow: 0 3px 24px 0 rgba(255,179,0,0.11), 0 2px 7px 0 rgba(29,53,87,0.07);
  margin-bottom: 20px;
  border: 1.4px solid #FFB300;
  font-size: 1.12rem;
  color: #1D3557;
  position: relative;
  /* For gold quote marks: */
  overflow: visible;
}
.testimonial-card:before {
  content: '\201C';
  color: #FFB300;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  position: absolute;
  left: 18px;
  top: -8px;
  opacity: 0.16;
}
.testimonial-card p {
  color: #23272f;
  font-size: 1.08rem;
  margin-bottom: 0.5em;
  font-style: italic;
  line-height: 1.5;
  z-index: 2;
}
.testimonial-card span {
  color: #1D3557;
  font-size: 1rem;
  opacity: 0.93;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  .testimonial-card {
    min-width: 0;
    width: 100%;
    border-radius: 10px;
  }
}
/* --------------------------------------------
   BRAND STORY / TRUST BADGES / ABOUT STATS
--------------------------------------------- */
.trust-badges {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 10px;
}
.trust-badges img {
  width: 50px;
  height: 50px;
  filter: brightness(1.12) sepia(1) hue-rotate(22deg) saturate(12) brightness(1.52);
  border-radius: 8px;
  background: #fffbe5;
  box-shadow: 0 2px 6px 0 rgba(255,179,0,0.065);
  padding: 3px;
}
.about-stats {
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  font-size: 1.17rem;
  line-height: 2.2;
  letter-spacing: 0.01em;
  background: #faf6e9;
  border-radius: 10px;
  padding: 12px 19px;
  box-shadow: 0 1px 7px 0 rgba(255,179,0,0.07);
  min-width: 230px;
  display: inline-block;
}

/* ------------------------------
   QUOTES & BLOCKQUOTES
------------------------------- */
blockquote {
  font-style: italic;
  color: #1D3557;
  font-size: 1.13rem;
  background: #fffbe9;
  border-left: 4px solid #FFB300;
  padding: 18px 20px 8px 16px;
  margin: 18px 0 12px 0;
  border-radius: 8px;
  box-shadow: 0 2px 11px 0 rgba(255,179,0,0.05);
  position: relative;
}
blockquote span {
  color: #232627;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 10px;
}

/* ----------------------------
   LOCATION MAP (Kontakt)
----------------------------- */
.location-map {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFB300;
  background: #fffbe9;
  border-radius: 10px;
  padding: 7px 16px;
}
.location-map img {
  width: 30px;
  height: 30px;
}

/* -----------------------------
   FOOTER
------------------------------ */
footer {
  background: #fff;
  color: #1D3557;
  border-top: 1.5px solid #ECECEC;
  padding: 32px 0 8px 0;
  margin-top: 38px;
  box-shadow: 0 -2px 13px 0 rgba(29, 53, 87, 0.04);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a img {
  height: 34px;
  margin-bottom: 16px;
}
.footer-links, .main-navigation-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.footer-links a, .main-navigation-links a {
  color: #1D3557;
  opacity: 0.9;
  transition: color 0.18s, opacity 0.13s;
  margin-bottom: 4px;
}
.footer-links a:hover, .main-navigation-links a:hover {
  color: #FFB300;
  opacity: 1;
}
.footer-contact address, .footer-contact span, .footer-contact a {
  font-style: normal;
  font-size: 0.98rem;
  color: #232650;
  opacity: 0.84;
}
.footer-contact a:hover {
  color: #FFB300;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* -----------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe9;
  color: #1D3557;
  box-shadow: 0 -2px 22px 0 rgba(255,179,0,0.15);
  border-top: 2px solid #FFB300;
  padding: 20px 28px 18px 28px;
  z-index: 5002;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  animation: cookie-slide-in 0.5s cubic-bezier(0.69,0.12,0.27,1.19);
  min-height: 72px;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  font-weight: 600;
}
.cookie-banner .cookie-accept {
  background: #FFB300;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #1D3557;
  color: #FFB300;
}
.cookie-banner .cookie-reject {
  background: #ECECEC;
  color: #1D3557;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #F8F9FA;
  color: #FFB300;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #FFB300;
  border: 1.4px solid #FFB300;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FFB300;
  color: #fff;
  border-color: #1D3557;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 8px 8px 8px;
    gap: 14px;
    font-size: 0.99rem;
  }
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,53,87,0.33);
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.35s cubic-bezier(0.64,0.21,0.24,1.23);
}
@keyframes cookie-modal-in {
  from{ opacity:0; }
  to{ opacity:1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #1D3557;
  min-width: 330px;
  max-width: 96vw;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(29,53,87,0.19), 0 1px 3px 0 rgba(255,179,0,0.04);
  padding: 34px 34px 22px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-modal-content-in 0.31s cubic-bezier(0.72,0.01,0.2,1.12);
}
@keyframes cookie-modal-content-in {
  from{transform:scale(0.92);opacity:0;}
  to  {transform:scale(1);opacity:1;}
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1D3557;
  cursor: pointer;
  padding: 4px;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #FFB300;
}
.cookie-modal h3 {
  color: #1D3557;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #1D3557;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 1.7px solid #FFB300;
  background: #f7faf8;
  vertical-align: middle;
  margin-right: 9px;
  transition: border 0.15s, background 0.18s;
  cursor: pointer;
  position: relative;
}
.cookie-modal .cookie-category input[type="checkbox"]:checked {
  background: #FFB300;
  border-color: #1D3557;
}
.cookie-modal .cookie-category input[type="checkbox"]:disabled {
  background: #ececec;
  border-color: #ececec;
  cursor: not-allowed;
}
.cookie-modal p {
  font-size: 0.99rem;
  color: #404a5f;
  margin-bottom: 0.7em;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject,
.cookie-modal .cookie-save {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, border 0.12s;
  font-weight: 600;
}
.cookie-modal .cookie-accept {
  background: #FFB300;
  color: #fff;
}
.cookie-modal .cookie-accept:hover, .cookie-modal .cookie-accept:focus {
  background: #1D3557;
  color: #FFB300;
}
.cookie-modal .cookie-reject {
  background: #ECECEC;
  color: #1D3557;
}
.cookie-modal .cookie-reject:hover, .cookie-modal .cookie-reject:focus {
  background: #F8F9FA;
  color: #FFB300;
}
.cookie-modal .cookie-save {
  background: #fff;
  color: #FFB300;
  border: 1.4px solid #FFB300;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #FFB300;
  color: #fff;
  border-color: #1D3557;
}
@media (max-width: 470px) {
  .cookie-modal .cookie-modal-content {
    min-width: 0;
    padding: 16px 6px 13px 8px;
    border-radius: 8px;
  }
}

/* ------------------------------------------
   FORMS (Add-on, even if not in HTML now)
------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 11px 15px;
  border-radius: 10px;
  border: 1.5px solid #ECECEC;
  background: #fff;
  margin-bottom: 18px;
  width: 100%;
  color: #1D3557;
  transition: border 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #FFB300;
  outline: none;
}

button, [type="button"], [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s;
}

/* ---------------------------------------
   UTILITIES & MICRO-INTERACTIONS
---------------------------------------- */
:root {
  --primary: #1D3557;
  --secondary: #F8F9FA;
  --accent: #FFB300;
  --border-radius: 14px;
}

::-webkit-scrollbar {
  width: 9px;
  background: #fffbe8;
}
::-webkit-scrollbar-thumb {
  background: #FFB300;
  border-radius: 6px;
}
::-webkit-selection, ::selection {
  background: #FFB300;
  color: #fff;
}

/* Modern shadow for cards */
.card, .feature-item, .knowledge-articles-grid > div, .testimonial-card {
  box-shadow: 0 2px 12px 0 rgba(29,53,87,0.06);
  border-radius: 14px;
}

/* ---------------------------------------------------
   RESPONSIVE SPACING, TYPOGRAPHY, FLEX DIRECTION
---------------------------------------------------- */
@media (max-width: 700px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.04rem; }
  .content-wrapper { gap: 13px; }
}

@media (max-width: 880px) {
  .content-wrapper, .feature-grid, .knowledge-articles-grid {
    flex-direction: column !important;
    gap: 17px !important;
  }
}

@media (max-width: 600px) {
  .section        { padding: 13px 2px; margin-bottom: 18px; border-radius: 7px; }
  .container      { padding-left: 3px; padding-right: 3px; }
}

/* --------------------------------------
   SPACING FOR LAYOUT CONTAINER CLASSES
----------------------------------------- */
.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;
}

/* END OF FILE */
