/* CSS RESET & BASELINE --------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F7FA;
  color: #214174;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  background: #F5F7FA;
  color: #214174;
  min-height: 100vh;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #214174;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #93B6E6;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  padding: 12px 16px;
  border: 1px solid #E1E6EF;
  font-size: 1rem;
}
th {
  background: #214174;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

/* TYPOGRAPHY SYSTEM --------------------------------------------------- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #214174;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1.2px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #214174;
  margin-bottom: 18px;
  letter-spacing: -0.7px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #214174;
  margin-bottom: 12px;
}
h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #214174;
}
p {
  font-size: 1.06rem;
  margin-bottom: 14px;
  color: #214174;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}
.text-section {
  margin-bottom: 28px;
}
.text-section h2, .text-section h3 {margin-top: 8px;}

/* CONTAINERS & WRAPPERS ---------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(33,65,116,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* HEADER & NAVIGATION ------------------------------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(33,65,116,0.03);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 18px;
  min-height: 74px;
}
.logo img{height:40px;width:auto;}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #214174;
  font-size: 1.025rem;
  opacity: 0.88;
  transition: color 0.2s, opacity 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #93B6E6;
  opacity: 1;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #214174;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  border-radius: 36px;
  padding: 12px 32px;
  margin-left: 22px;
  box-shadow: 0 4px 16px rgba(33,65,116,0.12);
  border: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, color 0.18s, transform 0.11s;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #93B6E6;
  color: #214174;
  box-shadow: 0 6px 20px 0 rgba(33,65,116,0.18);
  transform: translateY(-2px) scale(1.035);
}

/* MOBILE BURGER MENU ------------------------------------------------- */
.mobile-menu-toggle {
  position: fixed;
  right: 26px;
  top: 18px;
  background: #214174;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  box-shadow: 0 2px 14px rgba(33,65,116,0.18);
  transition: background 0.2s, transform 0.17s;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: #93B6E6;
  color: #214174;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1201;
  width: 100vw; height: 100vh;
  background: #214174;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.73,.02,.17,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 64px;
  padding-left: 0;
  /* Hidden by default, shown by .open */
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 22px;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  z-index: 1240;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #93B6E6;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 30px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-radius: 10px;
  min-width: 180px;
  display: inline-block;
  transition:background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #214174;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width:500px){
  .mobile-menu {
    padding-left:0;
  }
  .mobile-nav {
    padding-left: 16px;
    font-size: 1.04rem;
  }
}

/* HERO --------------------------------------------------------------- */
.hero {
  background: linear-gradient(100deg, #93B6E6 10%, #F5F7FA 100%);
  border-radius: 0 0 3rem 3rem;
  margin-bottom: 44px;
  padding: 60px 0 44px 0;
  box-shadow: 0 8px 40px rgba(33,65,116,0.11);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero .content-wrapper {
  max-width: 700px;
}
.hero p {
  color: #214174;
  font-size: 1.24rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 22px 0;
    margin-bottom: 26px;
    border-radius: 0 0 2rem 2rem;
  }
}

/* SECTION: FEATURES, SERVICES, BENEFITS ------------------------------ */
.features {
  margin-bottom: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(33,65,116,0.07);
  padding: 24px 20px 20px 20px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
  min-height: 228px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item img{
  width: 44px; height: 44px; margin-bottom: 3px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px 0 rgba(33,65,116,0.14);
  transform: translateY(-3px) scale(1.025);
}
@media(max-width:990px) {
  .feature-grid {
    gap: 18px;
    justify-content: center;
  }
}
@media(max-width:700px){
  .feature-grid{
    flex-direction: column;
    gap: 14px;
  }
  .feature-item {
    max-width:100%;
    width:100%;
    min-height:auto;
  }
}

/* SERVICE OVERVIEW IN dienstleistungen.html --------------------------- */
.service-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-item {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33,65,116,0.09);
  padding: 23px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(33,65,116,0.18);
  transform: translateY(-3px) scale(1.03);
}
@media(max-width:900px){
  .service-overview-grid{
    flex-direction:column;
    gap:14px;
  }
  .service-item{max-width:100%;width:100%;}
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  background: #fff;
  box-shadow: 0 1px 7px 0 rgba(33,65,116,0.05);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 1.11rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-list span[aria-label="Preis"] {
  color: #93B6E6;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 24px;
  font-size: 1rem;
}
@media(max-width:640px){
  .service-list li{
    flex-direction:column;
    gap:5px;
    font-size:1rem;
  }
  .service-list span[aria-label="Preis"]{margin-left:0;}
}

/* CARDS (GENERIC), TESTIMONIALS, BLOG TEASERS ------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(33,65,116,0.07);
  padding: 23px 20px 19px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
  min-width: 230px;
  max-width: 340px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(33,65,116,0.16);
  transform: translateY(-3px) scale(1.027);
}

/* TESTIMONIALS ------------------------------------------------------- */
.testimonials {
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(33,65,116,0.13);
  font-size: 1.08rem;
  min-width: 250px;
  max-width: 350px;
  color: #214174;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within{
  box-shadow: 0 6px 28px 0 rgba(33,65,116,0.20);
  transform: scale(1.025);
}
.testimonial-card p {
  color: #214174;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.11rem;
  line-height: 1.5;
}
.testimonial-card strong {
  color: #214174;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
}
@media(max-width:900px){
  .testimonial-slider, .testimonial-list{flex-direction:column;gap:16px;}
}

.case-study-highlights{
  background: #93B6E6;
  color: #fff;
  border-radius: 10px;
  padding: 18px 22px 14px 22px;
  margin-top: 14px;
}
.case-study-highlights h3 {
  color: #fff;
  margin-bottom: 12px;
}
.case-study-highlights ul li{
  color: #fff;
  margin-bottom: 7px;
}

/* FAQ ACCORDION ------------------------------------------------------ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 13px 0 rgba(33,65,116,0.06);
  padding: 14px 18px 13px 18px;
  transition: box-shadow 0.15s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 6px 18px 0 rgba(33,65,116,0.13);
}
.faq-item h3 {
  cursor: pointer;
  margin-bottom: 0.7em;
  color: #214174;
  font-size: 1.11rem;
  font-weight: bold;
}
.faq-item p {
  color: #2d3952;
  font-size: 1rem;
}

/* CTA SECTION -------------------------------------------------------- */
.cta {
  background: #214174;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 36px;
  padding: 44px 0 44px 0;
  box-shadow: 0 4px 22px 0 rgba(33,65,116,0.12);
}
.cta h2 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.cta .cta-btn {
  background: #fff;
  color: #214174;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #93B6E6;
  color:#fff;
}
@media (max-width: 700px) {
  .cta {
    padding: 27px 0 27px 0;
  }
  .cta h2 {
    font-size: 1.27rem;
  }
}

/* BLOG TEASERS ------------------------------------------------------- */
.blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-teasers article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(33,65,116,0.05);
  padding: 18px 16px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.blog-teasers article:hover, .blog-teasers article:focus-within {
  box-shadow: 0 5px 25px 0 rgba(33,65,116,0.13);
  transform: scale(1.025);
}
.blog-teasers article h3{
  font-size: 1.11rem;
}
.blog-teasers article a {
  color: #214174;
  background: #F5F7FA;
  border-radius: 8px;
  padding: 4px 12px;
  align-self: flex-start;
  font-weight: bold;
  font-size: 0.98rem;
  margin-top: 5px;
  transition: background 0.16s, color 0.16s;
}
.blog-teasers article a:hover, .blog-teasers article a:focus{
  background: #93B6E6;
  color: #fff;
}
@media(max-width:700px){
  .blog-teasers{flex-direction:column;gap:12px;}
}

/* NEWSLETTER SECTION ------------------------------------------------- */
.newsletter {
  margin-bottom: 24px;
  padding: 32px 0 24px 0;
  border-radius: 12px;
  background: #93B6E6;
  box-shadow: 0 1px 11px 0 rgba(33,65,116,0.07);
  text-align: center;
}
.newsletter h2{color:#fff;margin-bottom:18px;}
.newsletter p{color:#fff;margin-bottom:24px;}
.newsletter .cta-btn{
  background: #fff;
  color: #214174;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.newsletter .cta-btn:hover, .newsletter .cta-btn:focus{
  background: #214174;
  color: #fff;
}

/* LEGAL PAGES -------------------------------------------------------- */
.legal .text-section,
.confirmation .text-section {
  background: #fff;
  padding: 20px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,65,116,0.05);
  margin-bottom: 20px;
}

/* CONTACT PAGE ------------------------------------------------------- */
.contact .text-section ul {
  margin-bottom: 24px;
}

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #214174;
  color: #fff;
  width: 100%;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 14px 0 rgba(33,65,116,0.11);
  margin-top: 48px;
  padding: 34px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.91;
  font-weight: 700;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #93B6E6;
  opacity: 1;
}
.footer-contact p, .footer-contact a{
  color: #fff;
  font-size: 1.01rem;
}
.footer-contact a{
  text-decoration:underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo{margin-bottom:12px;}
}

/* CONTENT UTILITY FLEXBOX LAYOUTS ------------------------------------ */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* COOKIE CONSENT BANNER & MODAL -------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2001;
  background: #214174;
  color: #fff;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 28px rgba(33,65,116,0.23);
  min-height: 84px;
  animation: cookieSlideUp 0.6s cubic-bezier(.73,.02,.17,1.01);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1.11rem;
  margin-bottom: 19px;
  text-align: center;
}
.cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 5px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 28px;
  border-radius: 36px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.11s;
  outline: none;
  box-shadow: 0 2px 5px rgba(33,65,116,0.09);
}
.cookie-btn.accept {
  background: #93B6E6;
  color: #214174;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #214174;
}
.cookie-btn.reject {
  background: #fff;
  color: #214174;
  border: 2px solid #93B6E6;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #93B6E6;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #93B6E6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #93B6E6;
  color: #214174;
}

/* COOKIE MODAL OVERLAY & DIALOG -------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,65,116,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  animation: fadeIn .4s cubic-bezier(.73,.02,.17,1.01);
}
@keyframes fadeIn {
  from {opacity:0;}
  to   {opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #214174;
  border-radius: 18px;
  min-width: 340px;
  max-width: 90vw;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 6px 36px 0 rgba(33,65,116,0.22);
  position: relative;
  animation: popIn .35s cubic-bezier(.73,.02,.17,1.01);
}
@keyframes popIn {
  from {transform: scale(0.91);}
  to   {transform: scale(1);}
}
.cookie-modal h2 {
  margin-bottom: 22px;
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #214174;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.11rem;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal label[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #214174;
  width: 19px;
  height: 19px;
}
.cookie-modal-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 22px;
  top: 20px;
  background: #93B6E6;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #214174;
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 10px 20px 10px;
  }
  .cookie-modal-btn-row{gap:11px;}
}

/* FORM ELEMENTS ------------------------------------------------------ */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 6px;
  border: 1.5px solid #93B6E6;
  padding: 12px 14px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.14s;
  background: #fff;
  color: #214174;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #214174;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
}

/* RESPONSIVENESS ----------------------------------------------------- */
@media (max-width: 1000px) {
  .container {max-width: 93vw;}
}
@media (max-width: 700px) {
  html { font-size: 15px; }
  h1, .hero h1 { font-size: 1.75rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .footer-logo img { height: 36px; }
}
@media (max-width: 400px) {
  html { font-size: 13.2px; }
}

/* SPACING & FLEXBOX LAYOUT ENFORCEMENT ------------------------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start;}
}

/* ANIMATIONS & MICRO-INTERACTIONS ------------------------------------- */
.card, .feature-item, .service-item, .testimonial-card, .faq-item, .blog-teasers article {
  transition: box-shadow 0.18s, transform 0.18s;
}
.cta-btn, .cookie-btn {
  transition: background 0.18s, box-shadow 0.17s, color 0.18s, transform 0.13s;
}

/* SCROLLBAR STYLING FOR MODERN BOLD ----------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F7FA;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #93B6E6;
  border-radius: 6px;
}

/* OVERRIDES & UTILITIES ----------------------------------------------- */
[hidden] {display:none!important;}
.hidden {display:none!important;}

/* END OF STYLE -------------------------------------------------------- */
