/* ===== CSS RESET & NORMALIZER ===== */
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;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #F7F7F7;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222A36;
  background: #F7F7F7;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #6BA0D6;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover,a:focus {
  color: #222A36;
  text-decoration: underline;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

/* ===== BRAND TYPOGRAPHY & FONTS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: 0.012em;
  font-weight: 700;
  line-height: 1.18;
  color: #222A36;
  margin-bottom: 12px;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2.0rem;  margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.39rem; }
  h3 { font-size: 1.08rem; }
}

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #222A36;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

strong { font-weight: 700; }

/* ===== CONTAINER & FLEXBOX LAYOUTS ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ===== HEADER & NAV ===== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid #E9ECEF;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px 0 rgba(34,42,54,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 42px; }

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #222A36;
  text-transform: uppercase;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.07em;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #6BA0D6;
  border-bottom: 2px solid #6BA0D6;
  background: none;
}

.cta.primary {
  padding: 10px 32px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #222A36;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 8px #e1e7ee33;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.18s;
  outline: none;
  text-transform: uppercase;
  margin-left: 6px;
  margin-right: 2px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta.primary:hover, .cta.primary:focus {
  background: #6BA0D6;
  color: #fff;
  box-shadow: 0 2px 18px #b0cbe8a1;
  text-decoration: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  background: #6BA0D6;
  color: #fff;
  border-radius: 24px;
  font-size: 1rem;
  transition: background 0.23s, color 0.23s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px #b0cbe87a;
  margin-top: 5px;
  margin-bottom: 5px;
}
.cta:hover, .cta:focus {
  background: #222A36;
  color: #fff;
}

/* Hamburger menu */
.mobile-menu-toggle {
  background: #fff;
  border: 2px solid #6BA0D6;
  color: #222A36;
  padding: 5px 12px 3px 12px;
  border-radius: 9px;
  font-size: 2.25rem;
  cursor: pointer;
  display: none;
  z-index: 105;
  transition: background 0.17s, border 0.2s, color 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #6BA0D6;
  color: #fff;
  border-color: #222A36;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container { gap: 18px; }
}
@media (max-width: 820px) {
  header .container { gap: 10px; }
  .main-nav a { font-size: 0.98rem; }
}
@media (max-width: 800px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .cta.primary { display: none; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #222A36ee;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.44,1.4,.55,1), background 0.2s;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #222A36;
  border: none;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 18px 28px 12px 0;
  cursor: pointer;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6BA0D6;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-top: 24px;
  padding-left: 48px;
}
.mobile-nav a {
  color: #F7F7F7;
  background: none;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  width: 100%;
  font-size: 1.33rem;
  padding: 18px 0 18px 4px;
  margin-bottom: 4px;
  transition: color 0.22s, background 0.18s;
  border-bottom: 2px solid #6BA0D611;
  border-radius: 4px 24px 24px 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6BA0D6;
  background: #fff1;
}

@media (max-width: 480px) {
  .mobile-nav {
    padding-left: 18px;
  }
  .mobile-menu-close {
    margin-right: 14px;
    width: 38px; height: 38px;
  }
  .mobile-nav a {
    font-size: 1.11rem;
    padding: 14px 0 14px 3px;
  }
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: #F7F7F7;
  padding: 56px 0 40px 0;
  margin-bottom: 34px;
  border-bottom: 4px solid #6BA0D6;
  position: relative;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #222A36;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.2rem;
  color: #222A36;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero .container { flex-direction: column; }
  .hero { padding: 38px 0 28px 0; margin-bottom: 24px; }
}

/* ===== FEATURE / SERVICE GRID & FLEX PATTERNS ===== */
.feature-grid, .testimonials-grid, .service-list, .process-steps, .feature-icons, .service-icons, .ratings-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div, .service-list > li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #e1e7ee44;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border: 2px solid #E9ECEF;
  transition: box-shadow 0.22s, border 0.18s, transform 0.22s;
}
.feature-grid > div:hover, .service-list > li:hover {
  box-shadow: 0 4px 18px #6BA0D622;
  border: 2px solid #6BA0D6;
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img, .service-list img {
  height: 42px;
  margin-bottom: 16px;
}
.feature-grid h3, .service-list span {
  font-size: 1.18rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: #222A36;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.feature-grid p, .service-list p {
  color: #222A36;
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .testimonials-grid { gap: 18px; }
  .feature-grid > div, .service-list > li { min-width: 180px; }
}
@media (max-width: 600px) {
  .feature-grid, .testimonials-grid, .service-list, .process-steps, .feature-icons, .service-icons { flex-direction: column; gap: 18px; }
  .feature-grid > div, .service-list > li { width: 100%; min-width: 0; }
}


/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 1.5px 10px #b0cbe81b;
  padding: 20px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 5px solid #6BA0D6;
  border-bottom: 2px solid #E9ECEF;
  position: relative;
  transition: box-shadow 0.21s, border-color 0.19s, transform 0.15s;
  color: #222A36;
}
.testimonial-card:hover {
  box-shadow: 0 6px 14px #6BA0D622;
  border-left: 5px solid #222A36;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.01rem;
  color: #222A36;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #464b55;
  margin-top: 8px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
.ratings-summary {
  background: #F7F7F7;
  border-radius: 24px;
  color: #222A36;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  padding: 10px 22px;
  margin-top: 12px;
  font-size: 1.23rem;
  letter-spacing: 0.05em;
  box-shadow: 0 1.5px 7px #b0cbe811;
}

@media (max-width: 800px) {
  .testimonials-grid { flex-direction: column; }
  .testimonial-card { width: 100%; flex-basis: unset; }
}

/* ===== CONTENT ELEMENTS & LISTS ===== */
.text-section, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info {
  flex-direction: row;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-icons, .service-icons {
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
}
.feature-icons img, .service-icons img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 1px 2px #B0CBE84D);
}

.process-steps {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 4px;
  background: #F7F7F7;
  border-radius: 15px;
  padding: 18px 20px 12px 23px;
}
.process-steps h3 {
  margin-bottom: 9px;
}

.confirmation-message {
  background: #eaf2f9;
  border-radius: 16px 16px 24px 24px;
  border-left: 5px solid #6BA0D6;
  padding: 32px 24px;
  margin-top: 10px;
  color: #222A36;
}

/* FAQ Accordions (not interactive, just styled) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #6BA0D6;
  box-shadow: 0 1.5px 3px #222A3612;
  padding: 18px 22px 18px 28px;
  margin-bottom: 8px;
  transition: box-shadow 0.23s, border-color 0.11s;
}
.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #222A36;
}
.faq-item div {
  font-size: 0.97rem;
  margin: 0;
  color: #37425a;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 3px 12px #6BA0D633;
  border-left: 4px solid #222A36;
}

/* Cards, Card Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #e1e7ee44;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #E9ECEF;
}

.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

@media (max-width: 520px) {
  .card-container, .content-grid, .feature-item {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-grid > div { padding: 16px 10px; }
}

/* Kontakt-Block (index) */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
}
.contact-block p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
  margin-bottom: 0;
}


/* ===== FOOTER ===== */
footer {
  background: #222A36;
  color: #F7F7F7;
  padding: 44px 0 22px 0;
  border-top: 2.5px solid #6BA0D6;
  width: 100%;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-logo img { height: 52px; }

.footer-nav, .footer-nav a {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #F7F7F7;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F7F7F7;
  border-bottom: 2px solid transparent;
  padding: 3px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.21s, border-color 0.21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6BA0D6;
  border-bottom: 2px solid #6BA0D6;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.99rem;
  color: #F7F7F7;
  margin-bottom: 3px;
}
.social-media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.social-media a img {
  width: 34px;
  height: 34px;
  transition: transform 0.21s, filter 0.18s;
  filter: grayscale(0.5) contrast(1.15);
}
.social-media a:hover img, .social-media a:focus img {
  transform: scale(1.1) rotate(-6deg);
  filter: grayscale(0) drop-shadow(0 2px 5px #6BA0D644);
}
.legal-links {
  font-size: 0.98rem;
  color: #F7F7F7;
  margin-top: 8px;
}
.legal-links a {
  color: #F7F7F7;
  text-decoration: underline;
  margin: 0 3px;
  transition: color 0.15s;
}
.legal-links a:hover, .legal-links a:focus {
  color: #6BA0D6;
  text-decoration: none;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .footer-logo img { height: 44px; }
}

/* ===== LEGAL TEXT SECTIONS ===== */
.legal-text {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px 26px 26px;
  color: #222A36;
  font-size: 1.07rem;
  line-height: 1.68;
  border-left: 5px solid #6BA0D6;
  box-shadow: 0 2px 5px #b0cbe86b;
  margin-bottom: 26px;
}

@media (max-width: 520px) {
  .legal-text { padding: 14px 9px 14px 14px; }
}

/* ===== ANIMATIONS & TRANSITIONS ===== */
.cta, .cta.primary, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .feature-grid > div, .card, .service-list > li, .testimonial-card {
  transition: all 0.19s cubic-bezier(.45,1.6,.5,1), color 0.21s, box-shadow 0.21s;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #222A36;
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -3px 24px #6BA0D616;
  padding: 24px 36px 14px 28px;
  border-top: 3.5px solid #6BA0D6;
  font-size: 1.02rem;
  gap: 30px;
  animation: slideup-banner 0.55s cubic-bezier(.63,1.7,.4,.82);
}
@keyframes slideup-banner {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { color: #222A36; margin: 0; font-size: 1.02rem; }
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn, .cookie-btn-primary {
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.17s;
  margin-left: 5px;
}
.cookie-btn {
  background: #f7f7f7;
  color: #222A36;
  border: 2px solid #6BA0D6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #6BA0D6;
  color: #fff;
  border-color: #222A36;
}
.cookie-btn-primary {
  background: #6BA0D6;
  color: #fff;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #222A36;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px 10px 10px;
    font-size: 0.98rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #222A3680;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.3s cubic-bezier(.48,1.5,.41,.86);
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222A36;
  border-radius: 18px;
  box-shadow: 0 8px 32px #6BA0D633;
  padding: 38px 34px 32px 34px;
  max-width: 390px;
  min-width: 275px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: appear-modal 0.33s cubic-bezier(.44,1.4,.55,1);
}
@keyframes appear-modal {
  0% { transform: scale(0.92); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.19rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #e5eefa;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  margin-left: 9px;
}
.cookie-toggle input {
  width: 100%; height: 100%; opacity: 0; position: absolute; left: 0; top: 0;
  cursor: pointer;
}
.cookie-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px #6ba0d633;
  transition: left 0.21s cubic-bezier(.44,1.4,.55,1), background 0.16s;
}
.cookie-toggle input:checked + .cookie-slider {
  left: 20px;
  background: #6BA0D6;
}
.cookie-category label {
  font-size: 1.01rem;
  cursor: pointer;
}
.cookie-category.essential label,
.cookie-category.essential .cookie-toggle,
.cookie-category.essential {
  opacity: 0.67;
  pointer-events: none;
}

.cookie-modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}

@media (max-width: 489px) {
  .cookie-modal { max-width: 99vw; min-width: unset; padding: 14px 7px; }
}

/* ===== UTILITIES & DECORATION (GEOMETRIC STRUCTURE) ===== */
/* Geometry: Angled underlines, box-shadows, structure markers */
h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  background: #6BA0D6;
  border-radius: 3px;
  margin-top: 3px;
}
@media (max-width: 640px) { h2::after { width: 33px; height: 3px; } }

.card, .testimonial-card, .faq-item, .confirmation-message {
  border-radius: 16px 36px 12px 24px/16px 24px 12px 36px;
}

hr {
  border: none;
  border-top: 2px solid #6BA0D6;
  margin: 32px 0 20px 0;
  width: 70px;
}

/* ===== RESPONSIVE GENERAL ADJUSTMENTS ===== */
@media (max-width: 1080px) {
  .container { padding: 0 8px; }
}
@media (max-width: 600px) {
  .container { padding: 0 2px; }
  .content-wrapper { padding: 0; }
  .section { padding: 28px 5px; margin-bottom: 37px; }
}

/* ===== FORMS (FUTURE USE) ===== */
input,
textarea,
select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #6BA0D6;
  padding: 8px 12px;
  color: #222A36;
  margin-bottom: 12px;
  background: #fff;
  transition: border 0.19s, box-shadow 0.21s;
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #222A36;
  box-shadow: 0 2px 9px #6BA0D644;
}
button, input[type="submit"] {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  cursor: pointer;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; background: #f2f2f2; }
::-webkit-scrollbar-thumb { background: #e2eaea; border-radius: 12px; }
::-webkit-scrollbar-thumb:hover { background: #6BA0D6; }

/* ===== VISUAL HIERARCHY SPACING ===== */
.section, 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; }

/* ===== END ===== */
