/* === CSS RESET & BASELINE === */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  background: transparent;
}
html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1c1c1c;
  background: #faf8f3;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #003366;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #b45f06;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #003366;
  margin-bottom: 16px;
  line-height: 1.16;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
hr.visual-divider {
  border: none;
  border-top: 2px dashed #bba078;
  margin: 32px 0;
  height: 0;
}

/* --- Container & Spacing --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 980px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .section {
    padding: 30px 6px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 2px;
  }
}

/* --- Vintage Retro Theme Colors and Backgrounds --- */
:root {
  --primary: #003366;
  --secondary: #1CA28B;
  --accent: #F4F7FA;
  --retro-yellow: #FFD966;
  --retro-oat: #f2ece3;
  --retro-brown: #8b5c2a;
  --retro-salmon: #fa9886;
  --retro-blue: #70a5d8;
}
body {
  background: var(--retro-oat);
}
main {
  background: none;
}

/* --- Retro Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:700,900&family=Roboto:400,500,700&display=swap');
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 0 #ffeed2, 0 3px 10px rgba(245,220,130,0.12);
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #b45f06;
  background: #fffbe7;
  padding: 20px;
  border-left: 5px solid #FFD966;
  margin: 20px 0;
  border-radius: 8px;
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* --- Buttons --- */
.cta-btn,
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: var(--retro-yellow);
  color: #3c2c11;
  border: none;
  border-radius: 26px;
  padding: 12px 38px;
  box-shadow: 0 3px 0 #bba078, 0 8px 20px 0 rgba(180,95,6,0.04);
  font-size: 1.09rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  text-shadow: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus {
  background: var(--retro-brown);
  color: #FFD966;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 12px rgba(25,0,0,0.08);
}

/* --- Header / Navigation --- */
header {
  background: #FFD966;
  box-shadow: 0 2px 0 #bba078;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #3c2c11;
  font-size: 1.01rem;
  letter-spacing: 0.04em;
  padding: 16px 10px 18px 10px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #ae6419;
  text-shadow: 0 2px 2px #fff9d6;
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  display: none;
  font-size: 1.9rem;
  background: var(--retro-yellow);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 10px;
  color: #805300;
  padding: 8px 16px;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-brown);
  color: #FFD966;
  box-shadow: 0 3px 14px rgba(0,0,0,0.10);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe7;
  box-shadow: 0 0 36px rgba(52, 44, 16, 0.20);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #b45f06;
  border: none;
  margin: 30px 0 18px 20px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #003366;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 90vw;
  margin: 0 0 0 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #3c2c11;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  padding: 6px 0;
  transition: color 0.18s, background 0.18s;
  border-radius: 7px;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffe19a;
  color: #ae6419;
  text-decoration: underline;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- Hero & Sections Styling --- */
.hero {
  background: repeating-linear-gradient(135deg,#fa9886 0 9px, #FFD966 12px 19px, #70a5d8 22px 42px);
  min-height: 310px;
  display: flex;
  align-items: center;
  margin-bottom: 58px;
  border-bottom: 4px dotted #bba078;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 580px;
}
.hero h1 {
  color: #003366;
  font-size: 2.6rem;
  margin-bottom: 14px;
  line-height: 1.17;
}
.hero p {
  color: #3c2c11;
  margin-bottom: 18px;
  font-size: 1.09rem;
}

.features {
  background: #FFFBE7;
  border-bottom: 1px solid #fa9886;
}
.features .feature-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(70, 63, 10, 0.09);
  padding: 24px 18px 22px 18px;
  width: 252px;
  margin-bottom: 18px;
  border: 3px solid #FFD966;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: hue-rotate(-25deg) saturate(0.7);
}
.feature-item h3 {
  font-size: 1.116rem;
  margin-bottom: 4px;
  color: #8b5c2a;
}
.feature-item:hover {
  box-shadow: 0 10px 40px 2px rgba(244, 152, 133, 0.12);
  transform: translateY(-5px) scale(1.028);
}
@media (max-width: 1040px) {
  .feature-item {
    width: calc(50% - 28px);
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    width: 100%;
    min-width: 0;
    padding: 16px 10px;
  }
}

/* --- Cards and Lists --- */
.card-container, .card-grid, .blog-cards, .case-study-cards, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .case-study-card, .blog-card, .team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px 1px rgba(70,63,10,0.09);
  margin-bottom: 20px;
  padding: 22px 16px 22px 18px;
  border: 2px solid #fa9886;
  width: 280px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.14s;
}
.card:hover, .case-study-card:hover, .blog-card:hover, .team-member:hover {
  box-shadow: 0 7px 32px 2px rgba(244, 152, 133, 0.19);
  transform: translateY(-3px) scale(1.021);
}
.team-member {
  border-color: #FFD966;
  width: 300px;
  background: #FFFBE7;
}

@media (max-width: 950px) {
  .card, .case-study-card, .blog-card, .team-member {
    width: 100%;
    margin-bottom: 18px;
    min-width: 0;
    padding: 16px 10px;
  }
  .card-container, .card-grid, .blog-cards, .case-study-cards, .team-bios {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- Testimonial Cards --- */
.testimonial-card, .testimonial-snippet .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 22px;
  box-shadow: 0 1px 14px rgba(244,152,134,0.16), 0 0px 2px #FFD966;
  color: #1c1c1c;
  border: 2px solid #FFD966;
  font-size: 1.02rem;
  position: relative;
  min-width: 0;
  z-index: 1;
}
.testimonial-card strong {
  color: #8b5c2a;
  margin-top: 3px;
  font-weight: 700;
  font-size: 0.99rem;
}
.testimonial-card p {
  margin-bottom: 6px;
  color: #483922;
  font-style: italic;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Montserrat', Arial, serif;
  color: #FFD966;
  font-size: 3rem;
  position: absolute;
  left: 18px;
  top: 2px;
  opacity: 0.19;
  z-index: 0;
}

/* --- Blog List & Controls --- */
.blog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  align-items: center;
}
.blog-controls input[type=text], .blog-controls select {
  padding: 8px 18px;
  border-radius: 12px;
  border: 2px solid #FFD966;
  background: #FFFBE7;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.read-more {
  display: inline-block;
  margin-top: 8px;
  color: #1CA28B;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: color 0.13s;
}
.read-more:hover, .read-more:focus {
  color: #ae6419;
}

/* --- Newsletter & Forms --- */
.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
}
.subscribe-form label {
  font-size: 1.09rem;
}
.subscribe-form input[type=email] {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 12px;
  border: 2px solid #FFD966;
  background: #FFFBE7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.subscribe-form .cta-btn {
  margin: 0;
  font-size: 1rem;
}

/* --- Footer Styling --- */
footer {
  background: #003366;
  color: #ffd966;
  border-top: 6px dotted #FFD966;
  font-size: 1rem;
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 26px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .logo img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFD966;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fa9886;
  text-decoration: underline;
}
.contact-snippet {
  font-size: 1rem;
  color: #FFD966;
  margin-bottom: 8px;
  line-height: 1.7;
}
.contact-snippet a {
  color: #fa9886;
}
.social-links img {
  height: 32px;
  width: 32px;
  margin-right: 8px;
  filter: sepia(0.6) hue-rotate(-30deg) saturate(0.7);
  transition: filter 0.18s;
  cursor: pointer;
}
.social-links img:hover, .social-links img:focus {
  filter: sepia(0) hue-rotate(2deg) saturate(2) brightness(1.08);
}
.legal-links {
  font-size: 0.94rem;
  color: #ffd966;
  margin-top: 18px;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  footer {
    padding-top: 24px;
    padding-bottom: 16px;
    font-size: 0.93rem;
  }
}

/* --- CTA Bar ---*/
.cta-bar {
  background: linear-gradient(92deg, #FFD966 74%, #fa9886 100%);
  border-radius: 22px;
  box-shadow: 0 1px 16px rgba(244,152,134,0.07);
  margin-top: 32px;
  margin-bottom: 34px;
  padding: 36px 0;
  text-align: center;
}
.cta-bar .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta-bar h2 {
  color: #3c2c11;
  margin-bottom: 18px;
}
.phone-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.13rem;
  color: #694505;
  margin: 8px 0 0 0;
}
.phone-inline img {
  height: 18px;
  width: auto;
  filter: sepia(0.7) hue-rotate(-45deg) saturate(0.8);
}
.quick-contact-form {
  margin-top: 10px;
  font-size: 0.99rem;
  color: #3c2c11;
}

/* --- Various Content Sections --- */
.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) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- Service Category Grid --- */
.service-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-item {
  background: #FFFBE7;
  border-radius: 15px;
  border: 2px solid #FFD966;
  box-shadow: 0 3px 16px rgba(252, 195, 54, 0.08);
  padding: 20px 18px 20px 18px;
  width: 272px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.service-item img {
  width: 46px;
  height: 46px;
}
.service-item h3 {
  font-size: 1.14rem;
  color: #8b5c2a;
}
.service-item:hover {
  box-shadow: 0 8px 32px rgba(250, 152, 134, 0.13);
  transform: translateY(-3px) scale(1.019);
}
@media (max-width: 1000px) {
  .service-item {
    width: calc(50% - 28px);
  }
}
@media (max-width: 720px) {
  .service-category-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-item {
    width: 100%;
    min-width: 0;
    padding: 13px 7px;
  }
}

/* --- Policy & Legal Pages --- */
.policy-content {
  background: #FFFBE7;
  border-radius: 16px;
  border: 2px solid #FFD966;
  box-shadow: 0 1px 10px rgba(220,207,110,0.09);
  margin-top: 38px;
  margin-bottom: 28px;
  padding: 32px 18px;
}
@media (max-width: 800px) {
  .policy-content {
    margin-top: 22px;
    margin-bottom: 16px;
    padding: 16px 4px;
  }
}

/* --- Newsletter Subscribe Section --- */
.newsletter-subscribe {
  background: #70a5d8;
  border-radius: 14px;
  box-shadow: 0 0px 12px rgba(70,165,216,0.09);
  margin-bottom: 36px;
}
.newsletter-subscribe .content-wrapper {
  align-items: center;
  justify-content: center;
}
.newsletter-subscribe h2 {
  color: #fff;
  margin-bottom: 9px;
  font-size: 1.26rem;
}
.newsletter-subscribe .subscribe-form input {
  border: 2px solid #FFD966;
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFFBE7;
  color: #3c2c11;
  box-shadow: 0 -2px 32px rgba(252,195,54,0.09);
  border-top: 3px solid #FFD966;
  z-index: 99999;
  padding: 22px 12px 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  font-size: 1rem;
  animation: fade-in-bottom 0.33s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
.cookie-consent-banner p {
  margin: 0;
  color: #845c12;
  font-size: 1.02rem;
}
.cookie-consent-btns {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-consent-btns .cookie-btn {
  padding: 8px 18px;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(244, 152, 134, 0.08);
  margin-right: 0;
  background: var(--retro-yellow);
  color: #3c2c11;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-consent-btns .cookie-btn.accept {
  background: #1CA28B;
  color: #fff;
}
.cookie-consent-btns .cookie-btn.reject {
  background: #fa9886;
  color: #3c2c11;
}
.cookie-consent-btns .cookie-btn.settings {
  background: #FFD966;
  color: #3c2c11;
  border: 1.5px dashed #bba078;
}
.cookie-consent-btns .cookie-btn:hover, .cookie-consent-btns .cookie-btn:focus {
  box-shadow: 0 4px 14px rgba(244, 152, 134, 0.16);
  background: #8b5c2a;
  color: #FFD966;
}
@media (max-width: 800px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 4px 15px 4px;
    font-size: 0.98rem;
  }
  .cookie-consent-btns {
    gap: 10px;
  }
}
@keyframes fade-in-bottom {
  from {
    opacity: 0;
    transform: translateY(68px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Cookie Preferences Modal --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99998;
  transform: translate(-50%, -50%);
  background: #FFFBE7;
  border-radius: 22px;
  border: 4px solid #FFD966;
  box-shadow: 0 0 66px 10px rgba(245,220,130,0.11);
  padding: 32px 24px;
  min-width: 328px;
  min-height: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fade-in-bottom 0.25s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #8b5c2a;
  margin-bottom: 5px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .toggle {
  width: 38px;
  height: 20px;
  appearance: none;
  background: #FFD966;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  border: 1px solid #bba078;
}
.cookie-modal .toggle:checked {
  background: #1CA28B;
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 1px 2px rgba(120,120,120,0.08);
}
.cookie-modal .toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 22px;
  margin-top: 12px;
  align-items: center;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #b45f06;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 100;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #003366;
}
@media (max-width: 460px) {
  .cookie-modal {
    padding: 16px 3vw;
    min-width: unset;
  }
  .cookie-modal h2 {
    font-size: 1.09rem;
  }
}

/* --- Micro-interactions & Transitions --- */
a, .cta-btn, button, input[type=button], input[type=submit] {
  transition: color 0.16s, background 0.21s, transform 0.14s;
}
.card, .feature-item, .service-item, .case-study-card, .blog-card {
  transition: box-shadow 0.15s, transform 0.15s;
}
input, select, textarea {
  transition: border 0.13s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border: 2px solid #1CA28B;
  outline: none;
  box-shadow: 0 2px 7px #FFD96640;
}

/* --- Accessibility & Utility Classes --- */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* --- Success & Confirmation --- */
.confirmation {
  background: #e7eade;
  border-radius: 22px;
  border: 2px solid #FFD966;
  box-shadow: 0 2px 12px rgba(244, 200, 134, 0.10);
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 36px 18px;
  text-align: center;
}
.confirmation h1 {
  color: #003366;
}
.confirmation p {
  color: #8b5c2a;
}

/* --- Patterned Background for Extra Vintage Touch --- */
.about, .impact, .services, .capabilities, .case-study-intro, .blog-hero {
  background: repeating-linear-gradient(120deg, #ffd96611 0 18px, #f2ece3 30px 43px);
}

/* --- Client Logos Row --- */
.client-logos {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 20px;
}
.client-logos img {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 20px;
  padding: 8px;
  border: 2px solid #FFD966;
  box-shadow: 0 2px 10px #FFD96622;
}

/* --- Miscellaneous --- */
.blog-card h3, .case-study-card h3, .team-member h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #B45F06;
  margin-bottom: 8px;
}

/* --- Responsive details --- */
@media (max-width: 540px) {
  .cta-btn, .cookie-consent-btns .cookie-btn {
    padding: 10px 16px;
    font-size: 0.97rem;
  }
  .hero {
    min-height: 180px;
  }
  .client-logos img {
    width: 36px;
    height: 36px;
    padding: 3px;
  }
}
