/* ===============================
   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,
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7F9;
  color: #0B3A53;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #0B3A53;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #F7B500;
  outline-offset: 2px;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* ===============================
   TYPOGRAPHY (Modern Bold)
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  letter-spacing: -1px;
  color: #0B3A53;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 800;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
}
p, li, blockquote {
  font-size: 1.06rem;
  line-height: 1.75;
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0B3A53;
  font-weight: 700;
  border-left: 6px solid #F7B500;
  padding-left: 18px;
  margin: 18px 0 18px 0;
  background: #FFFDEB;
}
strong {
  font-weight: 700;
}

/* ===============================
   LAYOUT CONTAINERS & FLEX UTILS
   =============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(11,58,83,0.045);
}

@media (max-width: 900px) {
  .container { max-width: 100%; }
  .section { padding: 32px 10px; }
}
@media (max-width: 600px) {
  .section { padding: 24px 4px; }
}

/* ===============================
   HEADER / NAVIGATION
   =============================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(11,58,83,.07);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0B3A53;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: #F7B500;
  background: #0B3A53;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F7B500;
  color: #0B3A53;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border: none;
  border-radius: 25px;
  transition: background 0.22s, color 0.22s, transform 0.15s;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(247,181,0,.1);
  outline: none;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #0B3A53;
  color: #FFF;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 32px rgba(11,58,83,0.10);
}

/* Hamburger - Hidden on Desktop */
.mobile-menu-toggle {
  display: none;
  background: #0B3A53;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 7px 14px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7B500;
  color: #0B3A53;
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(11,58,83, 0.94);
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 0 0;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7B500;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 60px 0 0 40px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.16s, color .17s;
  min-width: 170px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7B500;
  color: #0B3A53;
}

@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 13px;
  }
  .cta-btn {
    padding: 11px 18px;
    font-size: 1rem;
    margin-left: 6px;
  }
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ===============================
   HERO & CONTENT SECTIONS
   =============================== */
.hero {
  background: #0B3A53;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
}

/* ===============================
   FLEXBOX LAYOUT STRUCTURES
   =============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(11,58,83,0.06);
  overflow: hidden;
  padding: 28px 22px 16px 22px;
  transition: box-shadow 0.19s, transform 0.19s;
  flex: 1 1 280px;
  min-width: 270px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 48px rgba(11,58,83,0.13);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.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;
  }
}

/* Features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F7F9;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(11,58,83,0.03);
  padding: 28px 18px;
  flex: 1 1 260px;
  min-width: 248px;
  max-width: 330px;
  position: relative;
  transition: box-shadow 0.13s;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item h3 {
  color: #0B3A53;
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.feature-item p {
  color: #274D64;
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(247,181,0,0.10);
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonial-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F7F9;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(11,58,83,0.06);
  min-width: 232px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  position: relative;
  border-left: 8px solid #F7B500;
  transition: box-shadow 0.19s, transform 0.19s;
}
.testimonial-card p {
  color: #0B3A53;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
}
.testimonial-card span, .testimonial-meta span {
  color: #274D64;
  font-size: .98rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 36px rgba(11,58,83,0.14);
  transform: translateY(-4px) scale(1.01);
}

/* ===============================
   SERVICE / FAQ / PRICES
   =============================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  flex-direction: column;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(11,58,83,0.05);
  padding: 20px 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list h2 {
  font-size: 1.18rem;
  color: #0B3A53;
  margin-bottom: 5px;
  font-weight: 800;
}
.service-price {
  display: inline-block;
  font-weight: 900;
  color: #F7B500;
  font-size: 1.05rem;
  background: #FFFDEB;
  border-radius: 8px;
  padding: 3px 10px;
  letter-spacing: 0.025em;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #F6F7F9;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(247,181,0,0.06);
  padding: 19px 14px;
}
.faq-accordion h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #0B3A53;
}
.faq-accordion p {
  color: #274D64;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(11,58,83,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  text-align: left;
  font-size: 1.05rem;
}
.pricing-table thead th {
  background: #0B3A53;
  color: #FFF;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.pricing-table tbody td {
  border-top: 1px solid #F6F7F9;
  color: #274D64;
}
.pricing-table tbody tr:hover {
  background: #FFFDEB;
}
.service-inclusions {
  margin-bottom: 20px;
  padding-left: 16px;
}
.service-inclusions li {
  margin-bottom: 7px;
  color: #274D64;
  font-size: 1.05rem;
  list-style: disc inside;
}

/* ===============================
   TEAM PAGE
   =============================== */
.team-member-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.team-member {
  background: #F6F7F9;
  border-radius: 17px;
  box-shadow: 0 2px 14px rgba(11,58,83,0.06);
  padding: 20px 16px;
  flex: 1 1 288px;
  min-width: 250px;
  transition: box-shadow 0.19s, transform 0.19s;
  margin-bottom: 20px;
}
.team-member:hover {
  box-shadow: 0 7px 28px rgba(11,58,83,0.15);
  transform: translateY(-5px) scale(1.01);
}
.team-member h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.team-member ul {
  margin-left: 18px;
  list-style: disc inside;
}
.team-member li {
  margin-bottom: 5px;
  font-size: 1.01rem;
  color: #274D64;
}
.contact-short {
  background: #fff;
  padding: 16px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(11,58,83,0.09);
  margin-bottom: 12px;
}
.contact-short img {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #0B3A53;
  color: #FFF;
  padding: 54px 0 28px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-brand {
  flex: 0 1 160px;
}
.footer-brand img {
  width: 70px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F7B500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  transition: color .17s, text-decoration .15s;
}
.footer-nav a:hover { text-decoration: underline; color: #fff; }
.footer-contact {
  flex: 1 1 220px;
  font-size: 1.04rem;
  color: #EFF2F5;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer-contact img {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  background: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(247,181,0,0.11);
  transition: background 0.18s, box-shadow 0.18s;
}
.footer-social a:hover {
  background: #F7B500;
  box-shadow: 0 4px 21px rgba(247,181,0,0.13);
}
.footer-social img {
  width: 21px;
  height: 21px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ===============================
   CONTACT & MAP SECTIONS
   =============================== */
.contact-details {
  padding: 20px 16px;
  background: #F6F7F9;
  border-radius: 13px;
  margin-bottom: 16px;
  box-shadow: 0 1px 9px rgba(11,58,83,0.07);
  font-size: 1.09rem;
}
.contact-details img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.location-map {
  background: #FFFDEB;
  border-radius: 10px;
  padding: 14px 11px;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ===============================
   MISC. CARDS, NEXT STEPS
   =============================== */
.next-steps-info ul {
  list-style: disc inside;
  margin-bottom: 0;
  padding-left: 13px;
}
.next-steps-info li {
  margin-bottom: 7px;
  color: #274D64;
}

/* ===============================
   FORM ELEMENTS (If any in page)
   =============================== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 9px;
  border: 1.5px solid #D1DADF;
  outline: none;
  padding: 12px 12px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F7B500;
  box-shadow: 0 0 6px #F7B50044;
}

button {
  cursor: pointer;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */
@media (max-width: 700px) {
  .container { padding: 0 7px; }
  .content-wrapper { gap: 18px; }
  .card, .feature-item, .testimonial-card, .team-member { min-width: 96vw; max-width: 100vw; }
}
@media (max-width: 768px) {
  .hero h1, h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 550px) {
  .feature-item, .testimonial-card, .team-member, .card {
    padding: 14px 7px;
    border-radius: 10px;
  }
  .section {
    margin-bottom: 34px;
    padding: 13px 2px;
    border-radius: 9px;
  }
  .pricing-table th, .pricing-table td { padding: 7px 4px; font-size: .98rem; }
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #0B3A53;
  color: #FFF;
  z-index: 1200;
  box-shadow: 0 -3px 24px rgba(11,58,83,0.13);
  padding: 19px 16px 17px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 1;
  transition: opacity 0.26s, transform 0.26s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-msg {
  flex: 1 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFF;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  border-radius: 21px;
  padding: 9px 25px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.16s;
}
.cookie-banner .accept-all {
  background: #F7B500;
  color: #0B3A53;
  margin-right: 4px;
}
.cookie-banner .accept-all:hover,
.cookie-banner .accept-all:focus {
  background: #fff;
  color: #0B3A53;
}
.cookie-banner .reject-all {
  background: #fff;
  color: #0B3A53;
}
.cookie-banner .reject-all:hover,
.cookie-banner .reject-all:focus {
  background: #F7B500;
  color: #0B3A53;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #F7B500;
  border: 2px solid #F7B500;
  padding: 8px 18px;
}
.cookie-banner .cookie-settings:hover {
  background: #F7B500;
  color: #0B3A53;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 420px;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  background: #fff;
  color: #0B3A53;
  border-radius: 18px;
  box-shadow: 0 7px 56px rgba(11,58,83,0.19);
  z-index: 1300;
  padding: 32px 20px 24px 20px;
  transition: opacity 0.28s, transform 0.28s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.cookie-modal h2 {
  font-size: 1.31rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 11px;
  font-weight: 900;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 12px 0 5px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #0B3A53;
}
.cookie-modal .cookie-switch {
  display: inline-flex;
  align-items: center;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 34px;
  height: 19px;
  background: #D1D8DE;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.17s;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #F7B500;
}
.cookie-modal input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.17s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.cookie-modal input[type="checkbox"]:checked:before {
  left: 17px;
}
.cookie-modal .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}
.cookie-modal .save-cookies {
  background: #0B3A53;
  color: #FFF;
  padding: 11px 30px;
  border-radius: 21px;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: none;
}
.cookie-modal .save-cookies:hover,
.cookie-modal .save-cookies:focus {
  background: #F7B500;
  color: #0B3A53;
}
.cookie-modal .close-cookies {
  background: #FFF;
  color: #0B3A53;
  border: 2px solid #0B3A53;
}
.cookie-modal .close-cookies:hover {
  background: #F6F7F9;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 19px 7px 17px 7px;
  }
  .cookie-modal {
    max-width: 95vw;
    padding: 13px 5px 10px 5px;
  }
}

/* ===============================
   UTILITY CLASSES & MODIFIERS
   =============================== */
.bold {
  font-weight: 900 !important;
}
.bg-accent { background: #F7B500 !important; }
.text-primary { color: #0B3A53 !important; }
.text-accent { color: #F7B500 !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-24 { margin-top: 24px !important; }
.flex-center {
  display: flex; align-items: center; justify-content: center;
}

/* ===============================
   ACCESSIBILITY
   =============================== */
:focus-visible {
  outline: 3px solid #F7B500;
  outline-offset: 1px;
}

/* ===============================
   OVERLAY BACKDROPS (for Modals)
   =============================== */
.overlay {
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(11,58,83,.36);
  z-index: 900;
  opacity: 1;
  pointer-events: all;
}
.overlay.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

/* ===============================
   MICRO-INTERACTIONS & HOVER STATES
   =============================== */
a, button, .card, .feature-item, .testimonial-card, .team-member {
  transition: box-shadow 0.19s, color 0.13s, background 0.18s, transform 0.17s;
}

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