/* =====================
   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;
}
footer span {
  color: white !important;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F0F4F8;
  color: #13315C;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: bold;
}

/* =====================
   TYPOGRAPHY & FONTS
   ===================== */

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #13315C;
  margin-bottom: 18px;
  text-shadow: 0 4px 16px rgba(238,132,52,0.11);
}
@media (min-width: 769px) {
  h1 { font-size: 3rem; }
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #EE8434;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #13315C;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  color: #EE8434;
  font-weight: 700;
  margin-bottom: 10px;
}
p, li, blockquote, span, td, th, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #13315C;
  line-height: 1.75;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #13315C;
  margin-bottom: 6px;
  padding-left: 18px;
  border-left: 5px solid #EE8434;
}
.text-section {
  margin-bottom: 22px;
}
.text-section p,
.text-section ul {
  margin-bottom: 10px;
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */

.container {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  box-sizing: border-box;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 8px 28px rgba(19,49,92,0.07),0 1.5px 0 0 #EE8434 inset;
}

@media (min-width: 769px) {
  section, .section {
    padding: 56px 0 56px 0;
    margin-bottom: 64px;
  }
}

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

/* =====================
   HEADER & NAVIGATION
   ===================== */

header {
  background: #fff;
  box-shadow: 0 1px 0 #E9ECEF;
  padding: 0;
  position: relative;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.main-nav {
  display: none;
}

.btn-primary {
  background: #EE8434;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 11px 28px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 24px rgba(238,132,52,0.13),0 2px 6px rgba(19,49,92,0.07);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  transition: background .18s, box-shadow .22s, transform .18s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #13315C;
  color: #fff;
  box-shadow: 0 6px 44px rgba(19,49,92,0.14),0 2px 6px rgba(238,132,52,0.05);
  transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
  background: #13315C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 999px;
  border: 2px solid #EE8434;
  margin-right: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  letter-spacing: 0.7px;
  transition: background .18s, color .18s, border .18s, transform .14s;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #EE8434;
  color: #fff;
  border-color: #EE8434;
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(19,49,92,0.09);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #13315C;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 18px;
  border-radius: 10px;
  transition: background .18s, box-shadow .18s;
  z-index: 1011;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F0F4F8;
  box-shadow: 0 0 0 2px #EE8434 inset;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #13315C;
    letter-spacing: 0.6px;
    padding: 6px 0;
    transition: color .18s;
    border-bottom: 2px solid transparent;
  }
  .main-nav a:hover, .main-nav a:focus {
    color: #EE8434;
    border-bottom: 2px solid #EE8434;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,49,92,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform .32s cubic-bezier(.83,.06,.34,1.08);
  will-change: transform;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-close {
  background: none;
  color: #EE8434;
  font-size: 2.75rem;
  border: none;
  position: absolute;
  top: 20px; right: 32px;
  z-index: 11;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  padding-top: 50px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.5px;
  transition: color .18s, border .18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EE8434;
  border-bottom: 2px solid #EE8434;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO SECTIONS
   ===================== */
.hero {
  background: #EE8434;
  color: #fff;
  border-radius: 0 0 42px 42px;
  margin-bottom: 54px;
  padding: 54px 20px 68px 20px;
  box-shadow: 0 9px 32px rgba(238,132,52,0.09);
  min-height: 320px;
  position: relative;
}
.hero h1, .hero h2, .hero h3, .hero p {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(19,49,92,0.16), 0 1.5px 0 #13315C;
}
.hero .btn-primary {
  margin-top: 24px;
  background: #13315C;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #fff;
  color: #EE8434;
}

/* =====================
   GENERIC FLEXBOX GRIDS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(19,49,92,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px;
  transition: box-shadow .18s, transform .14s;
}
.card:hover {
  box-shadow: 0 12px 36px rgba(238,132,52,0.07),0 10px 40px rgba(19,49,92,0.10);
  transform: translateY(-2px) scale(1.025);
}
.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;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 6px 28px rgba(19,49,92,0.07),0 1.5px 0 0 #EE8434 inset;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 39px rgba(19,49,92,0.10);
  transform: translateY(-2px) scale(1.023);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =====================
   HOMEPAGE – FEATURES & SERVICES
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.feature-grid li {
  flex: 1 1 260px;
  min-width: 230px;
  background: #F0F4F8;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(238,132,52,0.09);
  padding: 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow .20s, scale .13s;
  margin-bottom: 20px;
}
.feature-grid li:hover {
  box-shadow: 0 7px 24px rgba(238,132,52,0.18);
  scale: 1.04;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-right: 10px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.service-list li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(19,49,92,0.05);
  padding: 22px 16px 16px 16px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #EE8434;
  transition: box-shadow .15s, border-color .16s, transform .12s;
}
.service-list li:hover {
  box-shadow: 0 12px 32px rgba(238,132,52,0.08),0 8px 22px rgba(19,49,92,0.07);
  border-color: #13315C;
  transform: scale(1.025);
}
.service-list h3 {
  margin-bottom: 4px;
  color: #13315C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.service-price {
  color: #EE8434;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 12px;
}
.service-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .service-list li {
    min-width: unset;
  }
}

/* =====================
   ABOUT PAGE
   ===================== */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 16px;
}
.values-grid li {
  flex: 1 1 180px;
  background: #EE8434;
  color: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 24px 10px;
  box-shadow: 0 3px 11px rgba(19,49,92,0.06);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
}
.values-grid img {
  width: 32px;
  height: 32px;
}
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.team-bios li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(19,49,92,0.06);
  padding: 18px 16px 11px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border-left: 4px solid #EE8434;
  transition: box-shadow .17s, border-color .18s, scale .12s;
}
.team-bios li:hover {
  border-color: #13315C;
  box-shadow: 0 8px 22px rgba(238,132,52,0.09);
  scale: 1.025;
}
.team-bios img {
  width: 55px; height: 55px; border-radius: 8px;
  box-shadow: 0 0 0 3px #F0F4F8;
  background: #F0F4F8;
}
.team-bios h3 {
  font-size: 1rem;
  margin-bottom: 0;
}
.team-bios p {
  font-size: 0.97rem;
}
.team-icons {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
}
.team-icons img {
  width: 34px;
  height: 34px;
}

@media (max-width: 768px) {
  .values-grid, .team-bios {
    flex-direction: column;
    gap: 12px;
  }
}

/* =====================
   BLOG STYLES
   ===================== */
.blog-posts .post-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.blog-posts article {
  flex: 1 1 285px;
  background: #F0F4F8;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(238,132,52,0.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  border-left: 5px solid #EE8434;
  transition: box-shadow .13s, border-color .14s, scale .13s;
}
.blog-posts article:hover {
  box-shadow: 0 9px 26px rgba(238,132,52,0.11);
  border-color: #13315C;
  scale: 1.018;
}
.blog-posts h3 {
  font-size: 1.05rem;
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.categories-filter a {
  background: #EE8434;
  color: #fff;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 4px 14px;
  margin-right: 6px;
  transition: background .15s, color .13s, transform .14s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #13315C;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .blog-posts .post-teasers {
    flex-direction: column;
    gap: 13px;
  }
}

/* =====================
   CTA, BUTTONS, FINAL BLOCKS
   ===================== */
.cta-final, .cta-services, .cta-training, .cta-blog {
  background: #13315C;
  color: #fff;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 12px 32px rgba(19,49,92,0.10),0 3px 1.6px #EE8434 inset;
  margin-bottom: 0;
  padding: 46px 20px;
}
.cta-final h2, .cta-services h2, .cta-training h2, .cta-blog h2 {
  color: #fff;
  text-shadow: 0 2px 20px #EE843444, 0 1px #fff2;
}
.cta-final .btn-primary, .cta-services .btn-primary, .cta-training .btn-primary, .cta-blog .btn-primary {
  background: #EE8434;
  color: #fff;
  margin-top: 18px;
}
.cta-final .btn-primary:hover, .cta-final .btn-primary:focus,
.cta-services .btn-primary:hover, .cta-services .btn-primary:focus,
.cta-training .btn-primary:hover, .cta-training .btn-primary:focus,
.cta-blog .btn-primary:hover, .cta-blog .btn-primary:focus {
  background: #fff;
  color: #13315C;
}

/* =====================
   TESTIMONIAL CARDS
   ===================== */
.testimonials {
  background: #F0F4F8;
  border-radius: 26px;
  box-shadow: 0 8px 38px rgba(19,49,92,0.06);
}
.testimonials h2 {
  color: #13315C;
  margin-bottom: 24px;
}
.testimonial-card {
  background: #fff;
  border-left: 7px solid #EE8434;
  color: #13315C;
  font-size: 1rem;
  margin-bottom: 22px;
}
.testimonial-card blockquote {
  color: #13315C;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.testimonial-author {
  color: #EE8434;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-left: 6px;
}

/* High contrast for accessibility */
.testimonial-card,
.testimonial-card * {
  color: #13315C !important;
  background: #fff !important;
}

/* =====================
   GENERIC UTILS
   ===================== */
.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;
}

/* =====================
   CONTACT/LEGAL BLOCKS
   ===================== */
.contact-details ul, .legal ul, .why-trust ul, .unique-points, .trust-points {
  margin: 8px 0 12px 0;
  padding-left: 14px;
  list-style-type: disc;
  color: #13315C;
}
.contact-details a, .legal a {
  color: #EE8434;
}
.contact-details a:hover, .legal a:hover {
  text-decoration: underline;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #13315C;
  color: #fff;
  padding: 34px 0 26px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 32px rgba(19,49,92,0.15);
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #EE8434;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding: 2px 0;
  transition: color .13s, border .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  font-size: 0.96rem;
  color: #F0F4F8;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3001;
  background: #fff;
  color: #13315C;
  box-shadow: 0 -6px 32px #EE843434;
  border-top: 4px solid #EE8434;
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  transition: transform 0.32s cubic-bezier(.8,0,.5,1.13), opacity .24s;
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-message {
  font-size: 1rem;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 23px;
  cursor: pointer;
  transition: background .18s, color .14s, transform .13s;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: #EE8434;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #13315C;
  color: #fff;
}
.cookie-btn.reject {
  background: #13315C;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #EE8434;
  color: #fff;
}
.cookie-btn.settings {
  background: #F0F4F8;
  color: #13315C;
  border: 2px solid #EE8434;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #EE8434;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,49,92,0.3);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 48px #13315C18;
  max-width: 360px;
  width: 94vw;
  padding: 34px 22px 24px 22px;
  z-index: 4100;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  align-items: center;
}
.cookie-modal h3 {
  font-size: 1.45rem;
  color: #EE8434;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #13315C;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #EE8434;
}
.cookie-category .description {
  font-size: 0.95rem;
  color: #13315CBB;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.cookie-modal .cookie-btn {
  width: 100%;
}

/* =====================
   MEDIA QUERIES & RESPONSIVENESS
   ===================== */
@media (max-width: 575px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  section, .section {
    padding: 28px 5px;
  }
  .hero {
    padding: 33px 6px 44px 6px;
    min-height: 210px;
  }
  .cta-final, .cta-services, .cta-training {
    padding: 28px 7px;
  }
  .card, .feature-grid li, .service-list li, .team-bios li, .blog-posts article {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 992px) {
  header .container {
    flex-direction: row;
    gap: 16px;
    min-height: 58px;
  }
  .logo img {
    height: 34px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.12rem; }
}

/* =====================
   ANIMATION & MICROINTERACTIONS
   ===================== */
.btn-primary, .btn-secondary, .footer-nav a, .main-nav a, .categories-filter a {
  transition: background 0.18s, border 0.17s, color 0.13s, box-shadow 0.17s, transform 0.13s;
}
.card, .feature-grid li, .service-list li, .blog-posts article, .testimonial-card, .team-bios li {
  transition: box-shadow 0.17s, border 0.18s, transform 0.13s;
}

/* =====================
   PRINT
   ===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .btn-primary, .btn-secondary {
    display: none !important;
  }
  section, .section, main, body {
    background: #fff !important;
    color: #13315C !important;
  }
}
