/* RESET & BASE TYPOGRAPHY ------------------------------------------------- */
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;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #f6f8fa;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #15334A;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1rem;
  font-weight: 400;
}

*, *:before, *:after { box-sizing: inherit; }

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: #15334A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F2B705; outline: none; }
ul, ol { padding-left: 1.5em; }
strong { font-weight: 700; }

::-webkit-input-placeholder { color: #8ca0b9; }
::-moz-placeholder          { color: #8ca0b9; }
:-ms-input-placeholder      { color: #8ca0b9; }
::placeholder              { color: #8ca0b9; }

/* TYPOGRAPHY SCALE --------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #15334A;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #15334A;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #15334A;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

p, li, span, a, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

p { font-size: 1.125rem; margin-bottom: 16px; }
li {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* CONTAINER & FLEX LAYOUTS (NO GRID) -------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(21,51,74,0.06),0 1.5px 4px rgba(21,51,74,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(15,31,55,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(21,51,74,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(21,51,74,0.03);
  padding: 28px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 rgba(21,51,74,0.14);
  transform: translateY(-2px) scale(1.03);
}

/*********************** BRAND GRADIENTS ****************************/
.gradient-bg {
  background: linear-gradient(90deg, #15334A 0%, #205d91 100%);
}
.hero-gradient {
  background: linear-gradient(96deg, #205d91 10%, #F2B705 95%);
}
.secondary-bg {
  background: #F2B705;
  color: #15334A;
}
.accent-bg {
  background: #fff;
  color: #15334A;
}

/* HEADER (Desktop & Mobile) ------------------------------------ */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 18px 0;
  border-bottom: 1px solid #eceef2;
  position: relative;
  z-index: 20;
}
header > a > img { height: 48px; }
header nav {
  display: flex;
  gap: 36px;
  margin-left: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #15334A;
  padding: 7px 2px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #F2B705;
  background: rgba(242,183,5,0.09);
}
.cta-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, #205d91 0%, #F2B705 100%);
  color: #15334A;
  border: none;
  border-radius: 24px;
  padding: 13px 34px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.15s;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(44,71,120,0.10);
  outline: none;
  margin-left: 32px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #15334A 0%, #F2B705 85%);
  color: #fff;
  box-shadow: 0 8px 30px 0 rgba(44,71,120,0.15);
  transform: translateY(-1.5px) scale(1.011);
}
.cta-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: none;
  color: #15334A;
  border: 2px solid #15334A;
  border-radius: 24px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 10px;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #15334A;
  color: #fff;
}

/************************* HERO SECTION ******************************/
.hero-section {
  width: 100%;
  padding: 60px 0 40px 0;
  min-height: 330px;
  background: linear-gradient(96deg, #205d91 5%, #F2B705 95%);
  color: #15334A;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero-section .container { flex-direction: column; }
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero-section h1 {
  color: #15334A;
  font-size: 2.6rem;
  margin-bottom: 8px;
  max-width: 700px;
}
.hero-section p {
  color: #15334A;
  font-size: 1.19rem;
  margin-bottom: 18px;
  max-width: 700px;
}

/******************* FEATURES GRID & CARDS *************************/
.features-section {
  background: #f7fafc;
  padding: 48px 0;
  margin-bottom: 60px;
}
.features-section .content-wrapper > h2 {
  margin-bottom: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #205d91;
}
.feature-item p {
  font-size: 1.05rem;
  color: #40536b;
}

/***************** TESTIMONIAL CARDS (High Contrast) ******************/
.testimonials-section {
  background: #fff;
  padding: 52px 0 32px 0;
  margin-bottom: 60px;
}
.testimonials-section .content-wrapper > h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  background: #fff;
  border: 2px solid #eee;
  color: #15334A;
  box-shadow: 0 3px 18px 0 rgba(21,51,74,0.09);
  max-width: 720px;
}
.testimonial-card p {
  font-size: 1.16rem;
  color: #15334A;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #205d91;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.star-rating img {
  width: 22px; height: 22px;
}

/************************* PRICING TABLE ****************************/
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 16px 0;
}
.plan {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(21,51,74,0.07);
  border: 2px solid #e9ecf4;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
  padding: 32px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.17s, transform 0.13s;
}
.plan:hover {
  border-color: #F2B705;
  box-shadow: 0 12px 38px 0 rgba(21,51,74,0.09);
  transform: translateY(-2px) scale(1.012);
}
.plan h3 {
  font-size: 1.36rem;
  color: #15334A;
  margin-bottom: 4px;
}
.plan ul {
  margin-bottom: 10px;
  padding-left: 16px;
  color: #47536d;
}
.plan .cta-primary {
  margin: 10px 0;
  width: 100%;
  text-align: center;
}

/******************** BLOG LIST STYLES *****************************/
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-post-teaser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(21,51,74,0.04);
  padding: 24px 16px;
  flex: 1 1 320px;
  min-width: 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.blog-post-teaser h3 {
  font-size: 1.18rem;
  color: #205d91;
  margin-bottom: 8px;
}
.blog-post-teaser p {
  font-size: 1.04rem;
  margin-bottom: 10px;
}
.blog-post-teaser a {
  font-size: 1.01rem;
  color: #15334A;
  text-decoration: underline;
  transition: color 0.15s;
}
.blog-post-teaser:hover {
  box-shadow: 0 6px 20px 0 rgba(21,51,74,0.13);
  transform: translateY(-2px) scale(1.01);
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 6px 0 12px 0;
}
.categories-filter span {
  font-weight: 600;
  color: #205d91;
  margin-right: 8px;
}
.categories-filter a {
  font-size: 1rem;
  color: #205d91;
  background: #eaf3ff;
  border-radius: 16px;
  padding: 5px 16px;
  transition: background 0.13s, color 0.13s;
}
.categories-filter a:hover {
  background: #F2B705;
  color: #15334A;
}

/************************* SERVICE TEASERS **************************/
.service-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(21,51,74,0.04);
  padding: 20px 16px;
  flex: 1 1 200px;
  min-width: 230px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.service-item h3 {
  font-size: 1.15rem;
  color: #205d91;
}
.service-item p {
  font-size: 1.02rem;
}
.service-item:hover {
  box-shadow: 0 8px 24px rgba(21,51,74,0.14);
  transform: translateY(-2px) scale(1.01);
}

/******************* SUCCESS & LEGAL SECTION **********************/
.success-section, .legal-section {
  background: #fff;
  margin-bottom: 60px;
  padding: 48px 0 32px 0;
}

/************************ MAP SECTION ***************************/
.location-map {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map img {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 9px;
}

/*************************** FOOTER *****************************/
footer {
  background: linear-gradient(92deg, #15334A 0%, #205d91 100%);
  color: #fff;
  padding: 58px 0 18px 0;
  font-size: 1rem;
  margin-top: 48px;
  width: 100%;
}
footer .container {
  gap: 0;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  width: 100%;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  opacity: 0.9;
  transition: color 0.15s, text-decoration 0.13s;
}
footer nav a:hover { color: #F2B705; opacity: 1; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  opacity: .89;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 6px;
}
footer img {
  height: 44px;
  margin-bottom: 8px;
}
footer > .container > .content-wrapper:last-child {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 10px;
  margin-bottom: 0;
}
footer span { font-size: 0.98rem; opacity: 0.8; }

/************************* MOBILE MENU ************************/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 24px;
  right: 22px;
  height: 46px;
  width: 46px;
  border: none;
  background: #15334A;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 1.5px 6px 0 rgba(21,51,74,0.14);
  transition: background 0.16s, color 0.16s, transform .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2B705;
  color: #15334A;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #15334A;
  color: #fff;
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 28px 0 28px;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.57,.07,0,1.01);
}
.mobile-menu.opened {
  display: flex;
  transform: translateX(0);
  animation: menuIn 0.35s cubic-bezier(.38,.8,.2,1) 1;
}
@keyframes menuIn {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.1rem;
  background: none;
  border: none;
  align-self: flex-end;
  padding: 6px 8px;
  margin-bottom: 22px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2B705;
  color: #15334A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 2px;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B705;
  color: #15334A;
}

/************************ COOKIE CONSENT BANNER ********************/
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  width: 96vw;
  max-width: 540px;
  background: #fff;
  color: #15334A;
  box-shadow: 0 6px 28px 0 rgba(21,51,74,0.13);
  border-radius: 18px;
  padding: 22px 22px 22px 24px;
  z-index: 10500;
  font-size: 1.011rem;
  animation: cookieIn 0.54s cubic-bezier(.44,.08,.51,1.04) 1;
}
@keyframes cookieIn {
  0% { transform: translateY(40px) scale(.99); opacity:.05; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-banner p {
  flex: 1 1 50%;
  color: #15334A;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 20px;
  border: none;
  padding: 9px 23px;
  font-size: 1.02rem;
  font-weight: 600;
  margin-right: 8px;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #205d91;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F2B705;
  color: #15334A;
}
.cookie-btn.reject {
  background: none;
  color: #205d91;
  border: 2px solid #205d91;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f6f8fa;
  color: #15334A;
  border-color: #F2B705;
}
.cookie-btn.settings {
  background: none;
  color: #15334A;
  border: 1.5px solid #F2B705;
  margin-right: 0;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fef5e2;
  color: #205d91;
}

/***************** COOKIE SETTINGS MODAL (NO GRID) ******************/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10510;
  background: rgba(21,51,74,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .35s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  width: 94vw;
  max-width: 430px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 10px 35px 0 rgba(21,51,74,0.22);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #15334A;
  margin-bottom: 6px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-weight: 600;
  color: #205d91;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #f7fafc;
  border-radius: 12px;
  border: 1px solid #dae0e4;
  outline: none;
  cursor: pointer;
  transition: background 0.16s, border-color 0.14s;
  position: relative;
}
.cookie-toggle:checked {
  background: #F2B705;
  border-color: #205d91;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #15334A;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  background: #fff;
  transform: translateX(14px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #205d91;
  font-size: 1.5rem;
  align-self: flex-end;
  cursor: pointer;
  margin-top: -16px;
  margin-bottom: 6px;
  margin-right: -6px;
  border-radius: 50%;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f6f8fa;
  color: #F2B705;
}

/******************** RESPONSIVE/TABLET/MOBILE RULES *****************/
@media (max-width: 1160px) {
  .container { padding: 0 11px; }
}
@media (max-width: 980px) {
  .plan, .feature-item, .blog-post-teaser, .service-item {
    min-width: 180px;
    padding: 22px 10px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 16px;
  }
  .features-section, .testimonials-section, .success-section, .legal-section {
    padding-left: 0; padding-right: 0;
  }
}
@media (max-width: 840px) {
  .footer-contact {
    gap: 4px;
  }
  .footer-contact div img { width: 18px; height: 18px; }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 13px 0 9px 0;
  }
  header nav { display: none; }
  .cta-primary { margin-left: auto; }
  .mobile-menu-toggle {
    display: block;
  }
  .container { max-width: 100vw; padding: 0 6px; }
  .features-section, .testimonials-section, .success-section, .legal-section {
    padding: 30px 0 20px 0;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    padding: 0;
    gap: 13px;
  }
  .plan, .feature-item, .blog-post-teaser, .service-item {
    min-width: 130px;
    padding: 18px 6px;
  }
  .feature-grid, .service-teasers, .blog-list, .pricing-table {
    gap: 13px;
  }
  .feature-grid, .service-teasers, .blog-list, .pricing-table {
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-card, .card {
    padding: 14px 8px;
  }
  .categories-filter {
    gap: 4px;
    font-size: 0.97rem;
    flex-wrap: wrap;
  }
  .hero-section {
    padding: 36px 0 22px 0;
    min-height: 180px;
    margin-bottom: 34px;
  }
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .hero-section p {
    font-size: 1.02rem;
  }
  footer {
    padding: 32px 0 10px 0;
    font-size: 0.96rem;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact { font-size: 0.93rem; }
}
@media (max-width: 540px) {
  .hero-section h1 { font-size: 1.2rem; }
  .cookie-banner { padding: 14px 8px 16px 12px; font-size: 0.97rem; }
  .cookie-modal { padding: 13px 6px 10px 10px; }
  .cookie-modal-title { font-size: 1.05rem; }
  header > a > img, footer img { height: 36px; }
}
@media (max-width: 440px) {
  .container { padding: 0 2px; }
  .content-wrapper { gap: 7px; }
}
/* Hide scroll when modal or mobile menu active */
body.modal-open, body.mobile-menu-open { overflow: hidden; }

/**************** UTILITY CLASSES FOR COMPONENT SPACING *************/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/************** FORM ELEMENTS BASIC (if any contact forms) **********/
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #dae0e4;
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.16s, box-shadow 0.16s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #205d91;
  box-shadow: 0 2px 10px 0 rgba(32,93,145,0.06);
}
button { font-family: inherit; }

/******************* ANIMATIONS & MICRO-INTERACTIONS ***************/
.card, .feature-item, .plan, .blog-post-teaser, .service-item, .testimonial-card {
  will-change: box-shadow, transform;
}

/****************************** END ******************************* */