/* --------------------------------------------------
   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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video,input,button,select,textarea {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; background: #fff; color: #17324d; min-height: 100vh; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; }
img,svg { max-width: 100%; height: auto; display: block; }
a { color: #06457a; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #ffc100; outline: none; }
ul,ol { padding-left: 1.5em; }

/* --------------------------------------------------
   FONT IMPORTS
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #06457a;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 800;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.18; }
h3 { font-size: 1.3rem; line-height: 1.25; }
h4 { font-size: 1.1rem; }

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

.subheadline {
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #17324d;
  margin-bottom: 24px;
}

/* --------------------------------------------------
   BASE CONTAINERS & BASIC LAYOUTS
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main { min-height: 60vh; background: #fff; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(6,69,122,0.06);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .container {
    padding: 0 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #1f3240;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  background: #eef3f6;
  box-shadow: 0 2px 8px 0 rgba(6,69,122,0.04);
  border-bottom: 4px solid #ffc100;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 38px;
  min-width: 112px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #06457a;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.16s, color 0.12s;
}
nav a:hover, nav a:focus {
  background: #06457a;
  color: #ffc100;
}
nav a.cta {
  background: #ffc100;
  color: #06457a;
  border-radius: 12px;
  padding: 8px 24px;
  font-size: 1.06rem;
  font-weight: 800;
  box-shadow: 0 2px 4px rgba(6,69,122,0.16);
  letter-spacing: 0.04em;
  transition: box-shadow 0.22s, background 0.18s, color 0.16s;
  margin-left: 14px;
}
nav a.cta:hover, nav a.cta:focus {
  background: #06457a;
  color: #ffc100;
  box-shadow: 0 4px 12px rgba(6,69,122,0.21);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #06457a;
  line-height: 1;
  cursor: pointer;
  margin-left: 20px;
  transition: color 0.22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #ffc100;
  outline: none;
}

/* --- Mobile Navigation --- */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: #eef3f6;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin-bottom: 24px;
  margin-right: 34px;
  background: none;
  border: none;
  color: #06457a;
  cursor: pointer;
  transition: color 0.24s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #ffc100;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #06457a;
  border-radius: 8px;
  padding: 10px 8px 10px 0;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ffc100;
  background: #06457a10;
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 767px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 12px 2px 12px 8px;
  }
  header img {
    height: 28px;
    min-width: 80px;
  }
  .mobile-menu {
    padding-left: 8px;
    padding-top: 16px;
  }
}


/* --------------------------------------------------
   BUTTONS & CTAS
-------------------------------------------------- */
.cta, .btn {
  background: #ffc100;
  color: #06457a;
  padding: 12px 28px;
  border-radius: 19px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  box-shadow: 0 2px 8px rgba(6,69,122,0.16);
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.16s, color 0.12s, box-shadow 0.16s, transform 0.13s;
  outline: none;
}
.btn-secondary {
  background: #06457a;
  color: #ffc100;
  border-radius: 19px;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #06457a;
  color: #ffc100;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(6,69,122,0.16);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffc100;
  color: #06457a;
}

/* --------------------------------------------------
   FLEXBOX CARD/CONTENT LAYOUTS
-------------------------------------------------- */
.card-container, .features, .feature-grid, .services-grid, .usp-list, .blog-articles, .blog-categories ul, .benefits-list, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #eef3f6;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px -5px rgba(6,69,122,0.09);
  min-width: 240px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px -3px #ffc10070;
  transform: translateY(-3px) scale(1.014);
}

/* Content grid 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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container, .feature-grid, .services-grid, .usp-list, .values-list {
    gap: 16px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #eef3f6;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(6,69,122,0.08);
  margin-bottom: 24px;
  border-left: 6px solid #06457a;
}
.testimonial-card p {
  color: #17324d;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #06457a;
}
.testimonial-card img {
  width: 26px;
  height: 26px;
  margin-right: 2px;
}

.feature-item, .faq-list li, .usp-list li, .blog-articles li, .values-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #eef3f6;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(6,69,122,0.08);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  position: relative;
}

.feature-grid li, .services-grid li, .values-list li {
  background: #eef3f6;
  border-radius: 14px;
  padding: 24px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(6,69,122,0.10);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 190px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.12s;
}
.feature-grid li:hover, .services-grid li:hover, .values-list li:hover {
  box-shadow: 0 8px 28px -5px #ffc10050;
  transform: scale(1.025) translateY(-3px);
}
.feature-grid img, .services-grid img, .values-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 2px 4px rgba(6,69,122,0.06);
}

ol.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: stepno;
  margin-bottom: 8px;
  margin-left: 0;
  padding-left: 0;
}
ol.steps li {
  flex: 1 1 270px;
  background: #eef3f6;
  border-radius: 16px;
  padding: 28px 20px 28px 62px;
  position: relative;
  margin-bottom: 20px;
  min-width: 190px;
  font-size: 1.08rem;
  color: #06457a;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(6,69,122,0.08);
}
ol.steps li:before {
  counter-increment: stepno;
  content: counter(stepno);
  position: absolute;
  top: 28px; left: 18px;
  width: 32px; height: 32px;
  background: #ffc100;
  color: #06457a;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 32px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(6,69,122,0.14);
}
@media (max-width: 900px) {
  .feature-grid, .services-grid, .values-list, .usp-list, .blog-articles {
    gap: 10px;
  }
  ol.steps {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  ol.steps {
    flex-direction: column;
    gap: 8px;
  }
  ol.steps li {
    padding: 18px 10px 18px 55px;
    min-width: 120px;
    font-size: 0.97rem;
  }
  ol.steps li:before {
    top: 18px;
    left: 10px;
    width: 26px;
    height: 26px;
    font-size: 1.07rem;
    line-height: 26px;
  }
}

/* --------------------------------------------------
   PRICING TABLE
-------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  background: #eef3f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(6,69,122,0.09);
}
.pricing-table th,
.pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 14px;
  text-align: center;
  color: #06457a;
}
.pricing-table th {
  background: #06457a;
  color: #ffc100;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pricing-table tr:nth-child(even) td {
  background: #e4ecf3;
}
.pricing-table tr td:first-child,
.pricing-table tr th:first-child {
  text-align: left;
  background: #ffc100;
  color: #06457a;
  font-weight: bold;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 9px 4px; font-size: 0.91rem; }
  .pricing-table th { font-size: 0.93rem; }
}

/* --------------------------------------------------
   BLOG & FAQ
-------------------------------------------------- */
.faq-list, .blog-articles {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.faq-list li {
  border-left: 4px solid #06457a;
}
.faq-list h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.contact-cta {
  background: #ffc10010;
  border-radius: 8px;
  padding: 18px 12px;
  margin-top: 12px;
}
.contact-cta a {
  color: #06457a;
  text-decoration: underline;
  font-weight: bold;
}
.contact-cta a:hover { color: #ffc100; }

.blog-articles strong {
  font-size: 1.13rem;
  color: #06457a;
  margin-bottom: 4px;
}
.blog-categories {
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-categories h3 {
  font-size: 1.05rem;
}
.blog-categories ul {
  flex-wrap: wrap;
  gap: 14px;
}
.blog-categories li {
  font-size: 0.97rem;
  color: #06457a;
  background: #ffc10020;
  border-radius: 6px;
  padding: 5px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.benefits-list li {
  color: #444;
  font-size: 1rem;
  padding-left: 18px;
  position: relative;
}
.benefits-list li:before {
  content: '\25A0';
  color: #06457a;
  position: absolute;
  left: 0; top: 0;
  font-size: 0.92em;
}

/* --------------------------------------------------
   FOOTER STYLES
-------------------------------------------------- */
footer {
  background: #06457a;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 25px;
}
footer p {
  color: white;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
}
.footer-main nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-main nav a {
  color: #ffc100;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  background: none;
  border-radius: 4px;
  padding: 3px 8px;
  transition: color 0.14s;
  text-transform: uppercase;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  background: #ffc100;
  color: #06457a;
}
.footer-info {
  margin-top: 10px;
  font-size: 0.98rem;
  opacity: 0.8;
  color: #fff;
  text-align: left;
}
footer img {
  height: 32px;
}
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}

/* --------------------------------------------------
   CONTACT & SOCIAL STYLE
-------------------------------------------------- */
.contact-info {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  padding-left: 0;
}
.contact-info li {
  font-size: 1rem;
  color: #17324d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info img {
  width: 20px;
  opacity: 0.85;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.social-links a img {
  background: #fff;
  border-radius: 6px;
  width: 28px; height: 28px;
  box-shadow: 0 2px 8px rgba(6,69,122,0.11);
  transition: box-shadow .18s, background .12s;
}
.social-links a:hover img {
  background: #ffc100;
  box-shadow: 0 6px 14px #06457a35;
}

/* --------------------------------------------------
   CONFIRMATION / THANK-YOU PAGE
-------------------------------------------------- */
.confirmation-text { font-size: 1.1rem; color: #06457a; margin-bottom: 10px; }
.next-steps { font-size: 1rem; color: #17324d; }
.next-steps a { color: #06457a; text-decoration: underline; }
.next-steps a:hover { color: #ffc100; }

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #17324d;
  color: #fff;
  z-index: 120;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  box-shadow: 0 -2px 20px rgba(6,69,122,0.22);
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  flex-wrap: wrap;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s;
}
#cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
}
#cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.16s, color 0.13s;
  outline: none;
  box-shadow: 0 2px 7px rgba(6,69,122,0.12);
}
#cookie-banner .btn-accept {
  background: #ffc100;
  color: #06457a;
}
#cookie-banner .btn-accept:hover, #cookie-banner .btn-accept:focus {
  background: #06457a;
  color: #ffc100;
}
#cookie-banner .btn-settings {
  background: #eef3f6;
  color: #06457a;
  border: 1px solid #06457a40;
}
#cookie-banner .btn-settings:hover, #cookie-banner .btn-settings:focus {
  background: #ffc100;
  color: #06457a;
  border-color: #ffc100;
}
#cookie-banner .btn-reject {
  background: none;
  color: #ffc100;
  border: 1px solid #ffc100;
}
#cookie-banner .btn-reject:hover, #cookie-banner .btn-reject:focus {
  background: #ffc100;
  color: #06457a;
}
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8px;
    gap: 16px;
    font-size: 0.97rem;
  }
}

#cookie-modal {
  display: none;
  position: fixed;
  z-index: 150;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,32,48,0.88);
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.22s;
}
#cookie-modal.active {
  display: flex;
}
@keyframes fadeInModalBg {
  0% { background: rgba(16,32,48,0); }
  100% { background: rgba(16,32,48,0.88); }
}
.cookie-modal-content {
  background: #eef3f6;
  color: #06457a;
  border-radius: 18px;
  padding: 32px 36px;
  min-width: 330px;
  box-shadow: 0 4px 34px -6px #06457a30;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideInModal 0.23s cubic-bezier(.65,.05,.36,1);
  position: relative;
}
@keyframes slideInModal {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  margin-bottom: 18px;
  color: #06457a;
  font-weight: 800;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  background: #fff;
  border: 2px solid #06457a40;
  border-radius: 8px;
  width: 24px; height: 24px;
  cursor: pointer;
  position: relative;
}
.cookie-category input[type=checkbox]:checked {
  border-color: #06457a;
  background: #ffc100;
}
.cookie-category input[type=checkbox]:checked:after {
  content: '\2714';
  color: #06457a;
  position: absolute;
  left: 4px; top: 0px;
  font-size: 1.29rem;
}
.cookie-category.disabled input[type=checkbox] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #17324d;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 17px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #06457a;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #ffc100;
}
@media (max-width: 440px) {
  .cookie-modal-content {
    padding: 18px 6px;
    min-width: 0;
    width: 92vw;
  }
}

/* --------------------------------------------------
   GEOMETRIC DECORATIVE ANGLES / STYLES
-------------------------------------------------- */
.section {
  /* Add subtle geometric shadow/overlay effect */
  box-shadow: 0 2px 14px -6px #06457a22;
  position: relative;
}
.section:after {
  content: '';
  position: absolute;
  right: 40px; bottom: 12px;
  width: 80px; height: 80px;
  background: none;
  border-bottom: 26px solid #ffc10033;
  border-left: 44px solid transparent;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-28deg);
}
@media (max-width: 800px) {
  .section:after { display: none; }
}

.card:before, .feature-item:before, .feature-grid li:before, .services-grid li:before, .values-list li:before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 36px; height: 36px;
  background: #ffc10022;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}
@media (max-width: 600px) {
  .card:before, .feature-item:before, .feature-grid li:before, .services-grid li:before, .values-list li:before {
    width: 22px;
    height: 22px;
    top: -9px; right: -9px;
  }
}

/* --------------------------------------------------
   GENERAL TYPOGRAPHY
-------------------------------------------------- */
p,span,li,td {
  font-family: 'Roboto', Arial, sans-serif;
  color: #17324d;
  font-size: 1rem;
  line-height: 1.62;
  letter-spacing: 0.016em;
}
strong {
  font-weight: 800;
  color: #06457a;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.016em;
}
ul {
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ----------------------------------------
   MISCELLANEOUS / UTILITY SPACINGS
----------------------------------------- */
.mt-40 { margin-top: 40px; }
.mb-12 { margin-bottom: 12px; }
.mt-30 { margin-top: 30px; }
.space-below { margin-bottom: 32px; }
.text-center { text-align: center; }

/* ----------------------------------------
   RESPONSIVE FLEXBOX ADJUSTMENTS
----------------------------------------- */
@media (max-width: 1020px) {
  .card-container, .feature-grid, .services-grid, .usp-list, .values-list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .footer-main nav { gap: 14px; }
}
@media (max-width: 600px) {
  .feature-grid li, .services-grid li, .values-list li, .usp-list li, .faq-list li, .blog-articles li {
    padding: 14px 8px;
    min-width: 0;
  }
  .testimonial-card {
    padding: 12px 8px;
  }
}

/* --------------------------------------------------
   FORM ELEMENTS
-------------------------------------------------- */
input,select,textarea {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 13px;
  border-radius: 8px;
  border: 1px solid #06457a30;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border 0.13s, box-shadow 0.13s;
  background: #eef3f6;
  box-shadow: 0 2px 7px rgba(6,69,122,0.05);
}
input:focus,select:focus,textarea:focus {
  border: 1.5px solid #06457a;
  outline: none;
  background: #fffbe5;
}

/* 
  -- End of File --
*/