/* --- CSS RESET & NORMALIZATION --- */
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;
}
html {
  box-sizing: border-box;
}
*,*:before,*:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #1A2233;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
a {
  color: #154C79;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16857A;
}
ul, ol {
  margin-left: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #154C79;
  line-height: 1.17;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #154C79;
  margin-bottom: 20px;
  line-height: 1.25;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #154C79;
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #154C79;
  margin-bottom: 10px;
}
p, .text-section {
  font-size: 1rem;
  color: #1A2233;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section {
  padding-bottom: 16px;
}

/* --- GENERAL CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section, .section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: #fff;
}
.section {
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 0 0 0;
    margin-bottom: 40px;
  }
  .section {
    padding: 28px 12px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #f1f3f7;
  box-shadow: 0 2px 8px rgba(20,40,80,.05);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 0;
}
header a img {
  height: 48px;
}
@media (max-width: 768px) {
  header .container {
    min-height: 56px;
  }
  header a img {
    height: 38px;
  }
}

/* --- DESKTOP MAIN NAV --- */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #154C79;
  padding: 5px 6px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a.cta {
  background: #154C79;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 22px;
  margin-left: 15px;
  transition: background 0.2s, box-shadow 0.24s, color 0.15s;
  box-shadow: 0 1px 6px rgba(21,76,121,0.07);
  letter-spacing: 0.05em;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #16857A;
  color: #fff;
  box-shadow: 0 5px 24px rgba(22,133,122,0.13);
}
.main-nav a:hover, .main-nav a:focus {
  background: #f1f3f7;
  color: #16857A;
}
@media (max-width: 992px) {
  .main-nav {
    gap: 18px;
  }
  .main-nav a.cta {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #154C79;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  z-index: 150;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #16857A;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(21,76,121,0.15);
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(0.65,0,0.35,1);
  z-index: 200;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #154C79;
  margin: 20px 24px 12px 0;
  cursor: pointer;
  z-index: 251;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #16857A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 36px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  padding: 10px 0;
  color: #154C79;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f1f3f7;
  color: #16857A;
}

/* --- HERO/HEADER SECTION --- */
.hero {
  background: #F1F3F7;
  padding: 44px 0 48px 0;
  margin-bottom: 56px;
  border-bottom: 1px solid #ececec;
  min-height: 300px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #154C79;
}
.hero h2 {
  font-weight: 400;
  font-size: 1.3rem;
  color: #16857A;
  margin-bottom: 28px;
}
.hero .cta {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 26px 0;
    margin-bottom: 32px;
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero h2 {
    font-size: 1rem;
    margin-bottom: 14px;
  }
}

/* --- FLEXBOX GRIDS & REPEATABLE PATTERNS --- */
.feature-grid, .benefit-list, .skill-list, .case-study-list, .blog-list, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 0 0;
}
.feature-grid > div,
.benefit-list > div,
.skill-list > div,
.case-study,
.blog-post {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,76,121,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px 24px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 260px;
  max-width: 350px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.feature-grid > div:hover,
.benefit-list > div:hover,
.skill-list > div:hover,
.case-study:hover,
.blog-post:hover {
  box-shadow: 0 10px 36px rgba(22,133,122,0.13);
  transform: translateY(-4px) scale(1.017);
}
@media (max-width: 992px) {
  .feature-grid, .benefit-list, .skill-list, .case-study-list, .blog-list {
    gap: 18px;
  }
  .feature-grid > div, .benefit-list > div, .skill-list > div, .case-study, .blog-post {
    min-width: 200px;
    padding: 20px 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .benefit-list, .skill-list, .case-study-list, .blog-list, .team-bios {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div, .benefit-list > div, .skill-list > div, .case-study, .blog-post {
    max-width: 100%;
  }
}

/* --- CARD CONTAINER AND CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px rgba(21,76,121,0.07);
  padding: 32px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 10px 34px rgba(21,76,121,0.12);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .card {
    padding: 16px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #f9fafc;
  box-shadow: 0 2px 8px rgba(21,76,121,0.07);
  border-radius: 16px;
  font-size: 1.0rem;
  color: #1A2233;
  margin-bottom: 20px;
  min-width: 262px;
  max-width: 410px;
  flex: 1 1 240px;
}
.testimonial-card strong {
  font-weight: 700;
  color: #154C79;
  font-size: 1rem;
}
.testimonial-card p {
  font-size: 1.0rem;
}
@media (max-width: 992px) {
  .testimonial-slider {
    gap: 14px;
  }
  .testimonial-card {
    padding: 14px 9px;
    max-width: 100%;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 9px;
    min-width: 110px;
    gap: 8px;
  }
}

/* --- CLIENT LOGOS --- */
.client-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  padding-bottom: 16px;
}
.client-logos img {
  filter: grayscale(1) brightness(1.08);
  height: 38px;
  opacity: 0.7;
  transition: opacity 0.18s;
}
.client-logos img:hover, .client-logos img:focus {
  opacity: 1;
  filter: none;
}
@media (max-width: 768px) {
  .client-logos {
    gap: 22px;
    margin-top: 18px;
  }
  .client-logos img {
    height: 26px;
  }
}

/* --- CTA SECTIONS & BUTTONS --- */
.cta {
  text-align: center;
  width: 100%;
  background: #154C79;
  padding: 48px 0 36px 0;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 24px;
}
.cta h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.cta p {
  color: #f0f4fa;
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.cta a.cta {
  display: inline-block;
  background: #16857A;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.17rem;
  letter-spacing: .05em;
  margin: 0 auto;
  margin-top: 12px;
  box-shadow: 0 1px 12px rgba(21,76,121,0.07);
  transition: background 0.15s, box-shadow 0.2s;
  border: none;
  text-align: center;
}
.cta a.cta:hover, .cta a.cta:focus {
  background: #154C79;
  color: #fff;
  box-shadow: 0 5px 28px rgba(22,133,122,0.13);
}
@media (max-width: 768px) {
  .cta {
    padding: 30px 0 20px 0;
    margin-bottom: 42px;
  }
  .cta h2 {
    font-size: 1.25rem;
  }
  .cta .content-wrapper {
    gap: 12px;
  }
}

/* --- BLOG --- */
.blog-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin: 16px 0 0 0;
}
.blog-post {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(21,76,121,0.06);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 18px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 240px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.blog-post:hover {
  box-shadow: 0 10px 34px rgba(21,76,121,0.12);
  transform: translateY(-3px) scale(1.01);
}
.blog-post h3 {
  margin-bottom: 16px;
}
.blog-post a {
  color: #16857A;
  font-weight: 500;
  margin-top: 6px;
  align-self: flex-start;
  border-bottom: 1px solid #16857A;
  padding-bottom: 2px;
  transition: color 0.1s, border-color 0.1s;
}
.blog-post a:hover, .blog-post a:focus {
  color: #154C79;
  border-bottom: 1px solid #154C79;
}
@media (max-width: 768px) {
  .blog-list {
    flex-direction: column;
    gap: 10px;
  }
  .blog-post {
    padding: 15px 8px;
    max-width: 100%;
  }
}

.newsletter-signup {
  background: #f1f3f7;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #154C79;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  justify-content: center;
}

/* --- CASE STUDIES --- */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 22px;
}
.case-study {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,76,121,0.065);
  padding: 32px 28px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.case-study:hover {
  box-shadow: 0 10px 36px rgba(22,133,122,0.14);
  transform: translateY(-5px) scale(1.01);
}
.case-study h3 {
  font-size: 1.14rem;
}
@media (max-width: 768px) {
  .case-study-list {
    flex-direction: column;
    gap: 10px;
  }
  .case-study {
    padding: 18px 10px;
    max-width: 100%;
  }
}


/* --- TEAM PAGE --- */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-bios .text-section {
  background: #f9fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21,76,121,0.06);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .team-bios {
    flex-direction: column;
    gap: 9px;
  }
  .team-bios .text-section {
    padding: 11px 6px;
    margin-bottom: 10px;
  }
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.skill-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(21,76,121,0.06);
  padding: 24px 22px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .skill-list {
    flex-direction: column;
    gap: 8px;
  }
  .skill-list > div {
    padding: 12px 7px;
    margin-bottom: 8px;
  }
}

/* --- CONTACT PAGE --- */
.contact-details, .map-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 12px 0;
  font-size: 1.02rem;
  color: #154C79;
}
.contact-details span, .footer-contact span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.map-area p {
  color: #1A2233;
  background: #f1f3f7;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 1rem;
  margin: 0 0 8px 0;
}

/* --- LEGAL SECTION (PRIVACY/COOKIES/TERMS) --- */
.legal-section {
  background: #f9fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21,76,121,0.03);
  padding: 24px 22px;
  margin-bottom: 16px;
  color: #223358;
  font-size: 1rem;
}
.legal-section h2 {
  color: #154C79;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .legal-section {
    padding: 10px 6px;
  }
}

/* --- FOOTER --- */
footer {
  background: #F1F3F7;
  border-top: 1px solid #e0e8f1;
  margin-top: 26px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 36px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 20px 24px 20px;
}
.footer-logo {
  flex-basis: 140px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 48px;
}
.footer-nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #154C79;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #16857A;
}
.footer-contact {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-social a img {
  height: 28px;
  filter: grayscale(0.8) brightness(1.15);
  transition: filter 0.19s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
}
@media (max-width: 992px) {
  footer .container {
    gap: 22px 12px;
    padding: 18px 12px;
  }
  .footer-logo img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 16px 6px 6px 6px;
  }
  .footer-nav, .footer-contact {
    margin-bottom: 4px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 32px rgba(21,76,121,0.09);
  border-top: 1px solid #e6e9ef;
  padding: 26px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  transition: transform 0.32s cubic-bezier(.8,0,.1,1.05), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  color: #1A2233;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  background: #16857A;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 7px rgba(21,76,121,0.09);
}
.cookie-banner button.reject, .cookie-banner .cookie-settings-btn.reject {
  background: #F1F3F7;
  color: #154C79;
  border: 1px solid #154C79;
}
.cookie-banner button:hover, .cookie-banner button:focus, .cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #154C79;
  color: #fff;
  box-shadow: 0 5px 18px rgba(22,133,122,0.14);
}
.cookie-banner button.reject:hover, .cookie-banner .cookie-settings-btn.reject:hover {
  background: #154C79;
  color: #fff;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,40,60,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.19s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(21,76,121,0.16);
  padding: 36px 34px 24px 34px;
  min-width: 320px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalFadeIn .34s cubic-bezier(.8,0,.1,1.05);
}
@keyframes cookieModalFadeIn {
  from { transform: translateY(75px) scale(0.97); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: #154C79;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #16857A;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: #154C79;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #1A2233;
}
.cookie-category input[type="checkbox"] {
  accent-color: #16857A;
  width: 19px; height: 19px;
}
.cookie-category input[disabled] {
  opacity: .5;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 14px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  border-radius: 22px;
  background: #16857A;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(21,76,121,0.07);
  transition: background 0.18s, color 0.14s;
}
.cookie-modal-actions button.secondary {
  background: #F1F3F7;
  color: #154C79;
  border: 1px solid #154C79;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #154C79;
  color: #fff;
}
.cookie-modal-actions button.secondary:hover, .cookie-modal-actions button.secondary:focus {
  background: #154C79;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal-dialog {
    padding: 13px 6px 11px 6px;
    min-width: 90vw;
    border-radius: 9px;
  }
}

/* --- MISC UTILS AND FINE TUNING --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.confirmation {
  background: #F1F3F7;
  text-align: center;
  padding: 70px 0 70px 0;
}
.confirmation h1 {
  font-size: 2.15rem;
  margin-bottom: 17px;
  color: #154C79;
}
.confirmation p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.confirmation .cta {
  display: inline-block;
}
@media (max-width: 600px) {
  .confirmation {
    padding: 30px 0 24px 0;
  }
  .confirmation h1 {
    font-size: 1.2rem;
  }
  .confirmation p {
    font-size: 1rem;
  }
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
button, a.cta, .main-nav a.cta, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
}

/* --- FOCUS STATES FOR ACCESSIBILITY --- */
a:focus, button:focus, input:focus {
  outline: 2px solid #16857A;
  outline-offset: 2px;
  z-index: 10000;
}

/* --- CUSTOM SCROLLBAR FOR MODALS --- */
.cookie-modal-dialog::-webkit-scrollbar {
  width: 7px;
}
.cookie-modal-dialog::-webkit-scrollbar-thumb {
  background: #f1f3f7;
  border-radius: 9px;
}

/* Montserrat and Roboto font import for web use */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');
