/* ================= 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, menu, 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F6F8F9;
}
body {
  font-family: 'Georgia', serif;
  color: #153156;
  background: #F1F7FA;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #153156;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4682B4;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: 600;
}
section, main, header, nav, footer {
  display: block;
}
/* Focus outline for accessibility */
a:focus, button:focus {
  outline: 2px solid #153156;
  outline-offset: 2px;
}
/* Hide scrollbars on body on mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ============== GLOBAL CONTAINER & CORE LAYOUT ============== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 28px;
    padding: 20px 2px;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ================ TYPOGRAPHY =================== */
body, p, li, td {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  color: #153156;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: #153156;
  margin-bottom: 10px;
}
h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
h4 {
  font-size: 1.18rem;
}
small {
  font-size: 0.94em;
}
@media (max-width: 500px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.09rem; }
}

/* =========== HEADER AND NAVIGATION ============= */
header {
  background: #FFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 10px rgba(21,49,86,0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 36px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  padding: 7px 10px;
  border-radius: 4px;
  color: #153156;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F1F7FA;
  color: #4682B4;
}
.main-nav .cta {
  font-family: 'Montserrat', 'Georgia', serif;
  background: #153156;
  color: #fff;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(21,49,86,0.07);
  transition: background 0.18s, color 0.15s, transform 0.18s;
  margin-left: 8px;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: #4682B4;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #153156;
  padding: 6px 9px;
  margin-left: 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F1F7FA;
}
@media (max-width: 1000px) {
  .main-nav {display: none;}
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============== MOBILE MENU ================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 40px rgba(21,49,86, 0.12);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.5,.15,.15,1);
  pointer-events: none;
  opacity: 0.97;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 25px 8px 0px;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #4682B4;
  cursor: pointer;
  transition: color 0.14s;
  border-radius: 4px;
  padding: 4px 12px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #153156;
  background: #F1F7FA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 95%;
  margin: 30px 0 0 30px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.16rem;
  padding: 13px 3px;
  color: #153156;
  transition: color 0.14s, background 0.14s;
  border-radius: 3px;
  min-width: 220px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #4682B4;
  background: #F1F7FA;
}
@media (min-width:1020px){
  .mobile-menu {display:none;}
}
/* Prevent background interaction while menu open */
body.menu-open {
  overflow: hidden;
}

/* ================= HERO & CORE SECTIONS ================== */
.hero-section {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-section .container {
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.hero-section h1 {
  font-size: 2.2rem;
  color: #153156;
}
.hero-section p {
  font-size: 1.14rem;
  color: #354969;
  margin-bottom: 12px;
}
.hero-section .cta {
  margin-top: 10px;
}
@media (max-width: 800px) {
  .hero-section {padding-top: 22px; min-height: 240px;}
  .hero-section .content-wrapper {gap:16px; padding-top: 20px;}
}

/* =============== FEATURES GRID =================== */
.features-section, .features {
  background: #F1F7FA;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(21,49,86,0.06);
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 330px;
  list-style: none;
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  border: 1px solid #E5ECF3;
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-grid li img {
  height: 32px;
  width: 32px;
  margin-bottom: 8px;
}
.feature-grid li h3 {
  font-size: 1.07rem;
  margin-bottom: 4px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 7px 28px rgba(70,130,180,0.16);
  border-color: #B8CCE3;
  transform: translateY(-4px) scale(1.01);
}
@media (max-width: 900px) {
  .feature-grid {gap:18px;}
  .feature-grid li {min-width: 85vw; max-width: none;}
}

/* ================ CARD CONTAINERS (GENERIC) ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #E5ECF3;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(21,49,86,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 24px rgba(70,130,180,0.16);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

/* =========== BLOG TEASERS & ARTICLE GRID ============= */
.blog-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.blog-teaser {
  background: #fff;
  border: 1px solid #E5ECF3;
  border-radius: 10px;
  box-shadow: 0 3px 18px rgba(21,49,86,0.05);
  padding: 18px 22px 18px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.13s, border-color 0.13s, transform 0.13s;
}
.blog-teaser h3 {
  font-size: 1.085rem;
  margin-bottom: 2px;
}
.blog-teaser:hover, .blog-teaser:focus-within {
  box-shadow: 0 6px 25px rgba(70,130,180,0.12);
  border-color: #AECDEA;
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 900px) {
  .blog-teaser-grid {gap: 14px;}
  .blog-teaser {min-width: 93vw;max-width: none;}
}

/* ========== TESTIMONIALS =============== */
.testimonials-section {
  background: #fff;
  padding-top: 46px;
  padding-bottom: 40px;
  border-bottom:1px solid #e7e7e7;
}
.testimonials-section h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px 20px 30px;
  margin-bottom: 24px;
  background: #F1F7FA;
  border-radius: 14px;
  border: 1px solid #E6EDF4;
  box-shadow: 0 3px 22px rgba(70,130,180,0.06);
  font-size: 1.07rem;
  max-width: 670px;
  color: #153156;
  font-style: italic;
  transition: box-shadow 0.16s, border 0.14s;
}
.testimonial-card strong {
  color: #153156;
  font-size: 1rem;
  font-style: normal;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(70,130,180,0.10);
  border-color: #B8CCE3;
}
@media (max-width:600px){
  .testimonial-card {padding:13px 8px 13px 8px;}
}

/* =========== CTA SECTION ============= */
.cta-section {
  background: #153156;
  color: #fff;
  text-align: left;
  padding: 46px 0 50px 0;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .cta {
  margin-top: 15px;
  font-size: 1.16rem;
  background: #fff;
  color: #153156;
  border: none;
}
.cta-section .cta:hover, .cta-section .cta:focus {
  background: #4682B4;
  color: #fff;
}

/* ============= BUTTONS =============== */
.cta, .button, button, input[type=submit] {
  font-family: 'Montserrat', 'Georgia', serif;
  background: #4682B4;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 30px;
  font-size: 1.10rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(70,130,180,0.07);
  transition: background 0.15s, color 0.16s, transform 0.13s;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
.cta:hover, .cta:focus, .button:hover, .button:focus, button:hover, button:focus {
  background: #153156;
  color: #fff;
  transform: translateY(-2px) scale(1.023);
}

/* =========== FEATURE LIST & CARDS ========== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* ======= SERVICE LIST ======== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
}
.service-list li {
  flex: 1 1 250px;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 18px rgba(21,49,86,0.05);
  border: 1px solid #E6EDF4;
  padding: 16px 18px 14px 23px;
  margin-bottom: 20px;
  transition: border 0.11s, box-shadow 0.14s, transform 0.15s;
}
.service-list li h2 {
  font-size: 1.17rem;
  margin-bottom: 4px;
}
.service-list li:hover, .service-list li:focus-within {
  border-color: #B8CCE3; box-shadow:0 7px 28px rgba(70,130,180,0.11); transform:translateY(-2px) scale(1.01);
}
@media (max-width:860px) {
  .service-list {gap: 12px;}
  .service-list li {min-width: 92vw;}
}

/* ====== STEP LISTS & PROCESS ============ */
.stepper {
  list-style: decimal inside;
  margin: 16px 0 18px 5px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.stepper li {
  font-size: 1.08rem;
  margin-bottom:5px;
  padding-bottom: 0px;
}
.benefits-highlight {
  background: #F1F7FA;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 17px;
}
.benefits-highlight h2 {font-size:1.11rem; color:#153156; margin-bottom:5px;}

/* ======== TEAM SECTION =========== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.team-member {
  background: #fff;
  border: 1px solid #E5ECF3;
  box-shadow: 0 3px 16px rgba(21,49,86,0.06);
  border-radius: 10px;
  padding: 22px 21px 20px 23px;
  min-width: 230px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.17s, border 0.13s, transform 0.14s;
}
.team-member h3 { margin-bottom: 4px; }
.team-member:hover{box-shadow: 0 7px 24px rgba(70,130,180,0.09); border-color: #B8CCE3; transform:translateY(-2px) scale(1.01);}
@media (max-width:860px) {
  .team-list {gap: 15px;}
  .team-member {min-width: 92vw;}
}
.team-certifications ul {
  margin-top: 5px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========== FAQ ACCORDION ================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 25px;
}
.faq-item {
  background: #F1F7FA;
  border-radius: 8px;
  padding: 16px 19px 12px 19px;
  border-left: 4px solid #4682B4;
  box-shadow: 0 2px 8px rgba(21,49,86,.028);
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 4px;
}
.faq-item p {
  font-size: 1.03rem;
  color: #27507D;
}
@media (max-width:600px) {
  .faq-accordion {gap:13px;}
}

/* ========== TEXT & IMAGE FLEX SECTIONS ========= */
.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;
  }
}

/* ============== FOOTER ============== */
footer {
  background: #fff;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -2px 10px rgba(21,49,86,0.04);
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #4682B4;
  font-family: 'Georgia', serif;
  font-size: 0.98rem;
  background: none;
  border-radius: 3px;
  padding: 4px 7px;
  transition: background 0.1s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F1F7FA;
  color: #153156;
}
.mini-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 7px;
}
.mini-contact p {
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666A77;
}
.mini-contact img {
  height: 18px;
  width: 18px;
  filter: grayscale(50%);
}
.brand-signature {
  margin-top: 10px;
  color: #B8CCE3;
}
.brand-signature small {
  color: #B8CCE3;
  font-size: 0.92rem;
}
@media (max-width: 600px) {
  .footer-nav {gap: 10px;}
  .mini-contact {gap: 7px;}
  .container, .footer {padding-left:7px; padding-right:7px;}
}

/* ============= ABOUT, LEGAL, BLOG ============= */
.about-section, .team-section, .services-section, .disclaimer-section, .privacy-section, .gdpr-section, .tos-section, .cookie-section, .blog-intro-section, .blog-list-section, .contact-hero-section, .thank-you-section {
  background: #F1F7FA;
}
.text-section {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal-note {
  margin-top: 34px;
  background: #FFF8EB;
  padding: 9px 14px;
  border-radius: 6px;
  color: #616D77;
  border: 1px solid #EFDEB0;
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(21,49,86,0.09);
  border-top: 1px solid #E2E8F0;
  padding: 22px 13px 16px 13px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.32s cubic-bezier(.45,.7,.17,1);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  gap: 14px;
}
.cookie-banner.active {
  transform: translateY(0%);
  pointer-events: auto;
  opacity: 1;
}
.cookie-banner-text {
  color: #153156;
  font-size: 1.06rem;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner .cta,
.cookie-banner .cookie-settings-btn,
.cookie-banner .cookie-reject-btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 24px;
  min-width: 120px;
  box-shadow: none;
}
.cookie-banner .cta {
  background: #4682B4;
  color: #fff;
}
.cookie-banner .cta:hover, .cookie-banner .cta:focus {
  background: #153156;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #F1F7FA;
  color: #153156;
  border: 1px solid #B8CCE3;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #b8cce3;
  color: #fff;
}
.cookie-banner .cookie-reject-btn {
  background: #fff;
  border: 1px solid #E2E8F0;
  color: #153156;
}
.cookie-banner .cookie-reject-btn:hover {
  background: #F5EDEB;
  color: #B53C2A;
}

/* ============ COOKIE SETTINGS MODAL ============ */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 400px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 12px 44px rgba(21,49,86,0.18);
  border: 1px solid #E2E8F0;
  transform: translate(-50%, -50%) scale(0.93);
  z-index: 1003;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.45,.7,.19,1), opacity 0.21s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.11rem;
  margin-bottom: 14px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 14px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.02rem;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #4682B4;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #AEBDD9;
  margin-right: 7px;
}
.cookie-modal-category label {
  color: #153156;
  font-size: 1rem;
}
.cookie-modal-category .always-on {
  color: #B8CCE3;
  font-size: 0.98rem;
  margin-left: 5px;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  align-items: center;
  width: 100%;
}
.cookie-modal .cta,
.cookie-modal .cookie-reject-btn {
  font-size: 1rem;
  padding: 7px 19px;
}
.cookie-modal .cookie-close {
  background: none;
  color: #4682B4;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-close:hover {
  color: #153156;
}
@media (max-width: 600px) {
  .cookie-modal {padding: 15px 4vw 12px 4vw;}
}
@media (max-width: 400px) {
  .cookie-modal {padding: 7px 2vw 5px 2vw;}
}

/* ============ TABLES, FORMS & ELEMENT DEFAULTS =========== */
table { width: 100%; border-collapse: collapse; margin: 22px 0; }
th, td { padding:8px 8px; border: 1px solid #e8e8e8; }
th { background: #F1F7FA; font-weight: 600; color: #153156; }
input, textarea, select {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #B8CCE3;
  padding: 8px 11px;
  margin-bottom: 13px;
  width: 100%;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1px solid #4682B4;
  outline: none;
}
label {font-weight: 600;}

/* ========== RESPONSIVE & UTILITIES ============ */
@media (max-width: 900px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size:1.13rem;}
  h3 {font-size: 1.01rem;}
  .content-wrapper {gap: 16px;}
}
@media (max-width: 700px) {
  .container {max-width:98vw;}
  h1 {font-size: 1.25rem;}
  h2 {font-size: 1rem;}
  .main-nav, .footer-nav, .mini-contact {flex-direction: column; gap:7px;}
}

/* =========== ANIMATIONS & MICROINTERACTIONS ========== */
.cta, .button, button, input[type=submit], .main-nav .cta {
  transition: background 0.17s, color 0.13s, box-shadow 0.15s, transform 0.14s;
}
.card, .blog-teaser, .testimonial-card, .feature-grid li, .team-member, .faq-item {
  transition: box-shadow 0.16s, border 0.14s, transform 0.13s;
}
.card:hover, .feature-grid li:hover, .blog-teaser:hover, .team-member:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-2px) scale(1.016);
}

/* =========== ACCESSIBILITY & HELPER =========== */
.sr-only {
  position:absolute;
  left:-9999px;
  width:1px; height:1px;
  overflow:hidden;
}

/* =========== SPECIAL STATES =========== */
[aria-current="page"] {
  text-decoration: underline dashed #4682B4 2px;
  color: #153156;
}

/* =========== END OF CSS =========== */
