/* ========================================
   Solve OT — Main Stylesheet v3
   Brand: #10a8e0 (sky blue from logo)
   Dark text: #333 / #2c3e50
   Footer: #1c2b35
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Assistant', 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Oswald for all headings — matches live site */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #353535;
  line-height: 1.2;
}

/* ========================================
   HEADER: top nav row + feature bar row
   ======================================== */
/* Header scrolls with page — matches live site */
.site-header { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* --- Top row: logo + nav --- */
.nav-row { position: relative; }
.nav-row .container {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.site-logo img { height: 64px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 8px 14px;
  font-weight: 600; font-size: 0.9rem; color: #10a8e0;
  transition: color 0.15s;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: #0b87b5; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-top: 3px solid #10a8e0;
  min-width: 280px; border-radius: 0 0 4px 4px; z-index: 200;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 11px 20px; font-size: 0.88rem; color: #333;
  border-bottom: 1px solid #f0f0f0; transition: background 0.15s, color 0.15s;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: #e8f6fd; color: #10a8e0; }

.menu-toggle {
  display: none; background: none; border: 2px solid #10a8e0;
  color: #10a8e0; font-size: 1.3rem; padding: 4px 10px;
  border-radius: 3px; cursor: pointer; line-height: 1;
}

/* --- Feature bar row (below nav) --- */
.feature-bar {
  border-top: 1px solid #ebebeb;
  background: #fff;
  padding: 16px 0;
}
/* Break out of container so CALL button reaches right edge */
.feature-bar .container {
  max-width: none;
  margin: 0;
  padding-right: 0;
  /* Left padding aligns with the rest of the page content */
  padding-left: max(24px, calc((100vw - 1160px) / 2 + 24px));
  display: flex; align-items: stretch;
  justify-content: space-between; gap: 16px;
}
/* All 3 items in a single row — equal share of space, text wraps inside each */
.feature-bar-items {
  display: flex; gap: 12px; flex-wrap: nowrap;
  align-items: flex-start; flex: 1; min-width: 0;
}
/* Each item takes equal 1/3 of available space; icon top-anchored to match heading */
.feature-item { display: flex; align-items: flex-start; gap: 10px; flex: 1; min-width: 0; }
/* Grey box around icon — no border, matching live site */
.feature-item img {
  width: 52px; height: 52px; flex-shrink: 0;
  background: #f5f5f5; padding: 6px;
  border-radius: 2px;
}
.feature-item > div { min-width: 0; }
.feature-item h6 {
  font-size: 17px; font-weight: 700; color: #353535;
  text-transform: uppercase; margin: 0 0 10px 0; line-height: 17px;
}
.feature-item p { font-size: 17px; color: #717171; margin: 0; line-height: 26px; }

/* CALL button: Oswald regular, letter-spacing 1px, flush to right edge */
.call-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #10a8e0; color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 400; font-size: 15px; letter-spacing: 1px;
  padding: 0 36px; border-radius: 0; white-space: nowrap;
  flex-shrink: 0; align-self: stretch; min-height: 50px;
  transition: background 0.2s;
}
.call-btn:hover { background: #5cb85c; }

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider { position: relative; overflow: hidden; height: 700px; background: #1c2b35; }
.slider-track { display: flex; height: 100%; transition: transform 0.6s ease-in-out; }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
/* Lighter overlay — matches live site showing more of the image */
.slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.22); }

/* RIGHT-aligned content — right padding clears the arrow button */
.slide-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center; text-align: right;
  padding: 40px 84px 60px 45%;
}
.slide-content h2 {
  color: #fff; font-size: 4rem; font-weight: 700; line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3); margin-bottom: 18px;
  font-family: 'Oswald', sans-serif;
}
.slide-content p {
  color: rgba(255,255,255,0.9); font-size: 17px; line-height: 26px;
  max-width: 480px; margin-bottom: 36px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25); text-align: right;
}
/* White pill button — right aligned, matching live site */
.slide-content .btn-slide {
  display: inline-block; background: #fff; color: #333;
  font-weight: 800; font-size: 0.88rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 52px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  align-self: flex-end;
}
.slide-content .btn-slide:hover { background: #10a8e0; color: #fff; box-shadow: 0 4px 16px rgba(16,168,224,0.4); }

/* Prev/next arrow buttons */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 1.6rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.slider-btn:hover { background: rgba(255,255,255,0.32); border-color: #fff; }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }

/* Dots — above the white-card overlap zone (cards pull up 72px) */
.slider-dots {
  position: absolute; bottom: 109px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.slider-dot {
  width: 15px; height: 15px; border-radius: 50%;
  background: transparent; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.8);
  transition: background 0.2s, border-color 0.2s;
}
.slider-dot.active { background: #10a8e0; border-color: #10a8e0; }

/* ========================================
   SERVICE CARDS (overlap slider)
   ======================================== */
.service-cards-section {
  position: relative; z-index: 10;
  padding: 0 0 60px;
  margin-top: -72px; /* overlap slider bottom */
}
.service-cards-box {
  background: #fff;
  box-shadow: 0 6px 32px rgba(0,0,0,0.13);
  border-radius: 0;
  padding: 48px 40px 40px;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.card {
  text-align: center;
  padding: 12px 36px 28px;
  border-right: 1px solid #e5e5e5;
  display: block; /* so <a> behaves like block */
  background: #fff;
  transition: background 0.2s ease;
  cursor: pointer;
}
.card:last-child { border-right: none; }
/* Whole card clickable hover — grey bg + heading turns blue */
.card:hover { background: #f4f4f4; }
.card:hover h5 { color: #10a8e0; }
.card-icon { margin: 0 auto 20px; width: 80px; height: 80px; }
.card-icon img { width: 100%; height: 100%; object-fit: contain; }
.card h5 {
  font-size: 17px; font-weight: 700; color: #10a8e0;
  text-transform: uppercase; margin-bottom: 15px;
  line-height: 17px; transition: color 1s;
}
.card p { font-size: 17px; color: #717171; line-height: 26px; margin-bottom: 15px; }
.read-more {
  display: inline-block; color: #10a8e0;
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.07em;
  transition: color 0.15s;
}
.read-more:hover { color: #0b87b5; text-decoration: underline; }

/* ========================================
   ABOUT SECTION (Home)
   ======================================== */
.about-section { background: #fff; padding: 70px 0 0; }
.about-grid {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 60px; align-items: start;
}
.about-image img {
  width: 100%; height: 460px; object-fit: cover;
  object-position: center top;
}
.about-content { padding: 8px 0; }
.about-content h2 {
  font-size: 41px; font-weight: 700; color: #121212;
  margin-bottom: 30px; line-height: 55px;
}
.about-content p { font-size: 17px; color: #717171; margin-bottom: 25px; line-height: 26px; }

/* 3-colour contact bar — inside container, flush below grid */
.about-contact-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}
.about-contact-item {
  padding: 32px 28px;
  display: flex; align-items: center; gap: 16px; color: #fff;
}
.about-contact-item:nth-child(1) { background: #10a8e0; }
.about-contact-item:nth-child(2) { background: #1bc9c9; }
.about-contact-item:nth-child(3) { background: #5cb85c; }
.about-contact-icon {
  font-size: 1.5rem; flex-shrink: 0; opacity: 0.95;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.about-contact-text h6 {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff; margin-bottom: 3px;
}
.about-contact-text a,
.about-contact-text p {
  font-size: 0.9rem; color: rgba(255,255,255,0.92); margin: 0;
}
.about-contact-text a:hover { text-decoration: underline; }

/* ========================================
   VALUES SECTION (Home) — light grey bg
   ======================================== */
.values-section { background: #f0f0f0; padding: 80px 0 90px; }
.values-section h2 {
  text-align: center; font-size: 41px; font-weight: 700;
  color: #121212; margin-bottom: 64px; line-height: 55px;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-item { display: flex; align-items: flex-start; gap: 24px; }
.value-circle {
  width: 115px; height: 115px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: #fff;
  font-family: 'Oswald', sans-serif;
}
.value-circle.blue { background: #10a8e0; }
.value-circle.green { background: #5cb85c; }
.value-text h5 {
  font-size: 19px; font-weight: 400; text-transform: uppercase;
  color: #353535; margin: 15px 0; line-height: 19px;
}
.value-text p { font-size: 17px; color: #717171; margin: 0; line-height: 26px; }

/* ========================================
   BUTTONS (generic)
   ======================================== */
.btn {
  display: inline-block; padding: 10px 24px;
  background: #10a8e0; color: #fff;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 3px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: #0b87b5; }

/* ========================================
   PAGE BANNER (inner pages)
   ======================================== */
.page-banner { position: relative; height: 280px; overflow: hidden; background: #1c2b35; }
.page-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
/* No text overlay on inner page banners — title appears below in the page */

/* ========================================
   INNER PAGE LAYOUT
   Title below banner, then 2-col: content + sidebar
   ======================================== */
.page-title-bar {
  background: #fff;
  padding: 36px 0 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}
.page-title-bar h1 {
  font-size: 1.8rem; font-weight: 800; color: #2c3e50;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.page-title-bar .page-intro {
  font-weight: 700; color: #555; font-size: 0.95rem;
  padding-bottom: 24px;
}

.page-content-wrap { padding: 0 0 60px; }
.page-content-grid {
  display: grid; grid-template-columns: 1fr 310px; gap: 48px; align-items: start;
}

/* --- Main body --- */
.page-body h3 {
  font-size: 19px; font-weight: 400; color: #353535;
  text-transform: uppercase; margin: 28px 0 10px;
}
.page-body h3:first-child { margin-top: 0; }
.page-body p { color: #717171; font-size: 17px; line-height: 26px; margin-bottom: 25px; }
.page-body strong { color: #353535; }
.page-body ol { padding-left: 20px; list-style: decimal; margin-bottom: 14px; }
.page-body ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.page-body li { color: #717171; font-size: 17px; line-height: 26px; margin-bottom: 6px; }

/* --- Sidebar --- */
.page-sidebar { position: sticky; top: 140px; }
.sidebar-widget {
  border: 1px solid #e0e0e0; border-radius: 4px;
  padding: 24px 20px; margin-bottom: 20px;
}
.sidebar-widget h4 {
  font-size: 1rem; font-weight: 800; color: #2c3e50;
  margin-bottom: 18px;
}
.sidebar-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.sidebar-icon {
  width: 36px; height: 36px; border-radius: 50%; background: #10a8e0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; flex-shrink: 0;
}
.sidebar-icon-text { font-size: 0.85rem; }
.sidebar-icon-text strong { display: block; color: #2c3e50; font-size: 0.8rem; }
.sidebar-icon-text a,
.sidebar-icon-text span { color: #555; }
.sidebar-icon-text a:hover { color: #10a8e0; }

/* ========================================
   RELATED PAGES STRIP (bottom of service pages)
   ======================================== */
.related-pages { background: #f5f5f5; border-top: 1px solid #e8e8e8; padding: 48px 0; }
.related-pages h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: #aaa; margin-bottom: 22px;
}
.related-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-card {
  background: #fff; border: 1px solid #e0e0e0;
  border-bottom: 3px solid #10a8e0; border-radius: 4px;
  padding: 22px 20px; display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.2s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(16,168,224,0.1); }
.related-card img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.related-card-body h5 {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: #10a8e0; margin-bottom: 6px;
}
.related-card-body p { font-size: 0.86rem; color: #777; margin-bottom: 10px; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.contact-form h2 { margin-bottom: 8px; }
.contact-form > p { color: #666; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: #2c3e50; margin-bottom: 5px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid #d0d0d0; border-radius: 3px;
  font-size: 0.93rem; font-family: inherit; color: #333; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: #10a8e0; box-shadow: 0 0 0 3px rgba(16,168,224,0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status-success { background: #d4edda; color: #155724; padding: 12px 16px; border-radius: 4px; margin-top: 12px; font-size: 0.9rem; }
.form-status-error { background: #f8d7da; color: #721c24; padding: 12px 16px; border-radius: 4px; margin-top: 12px; font-size: 0.9rem; }
#form-status { display: none; }
#form-status:not(:empty) { display: block; }

.contact-info-card {
  background: #fff; color: #333;
  border-radius: 6px; padding: 32px 28px;
  border: 1px solid #e0e0e0;
  border-top: 4px solid #10a8e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-info-card h3 { color: #121212; margin-bottom: 24px; font-size: 22px; }
.info-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: center; }
.info-icon {
  width: 42px; height: 42px; background: #10a8e0; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: #fff;
}
.info-item-text h5 { color: #353535; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.info-item-text p, .info-item-text a { color: #555; font-size: 15px; margin: 0; line-height: 1.4; }
.info-item-text a:hover { color: #10a8e0; }
.contact-accreditations { margin-top: 24px; padding-top: 18px; border-top: 1px solid #e8e8e8; }
.contact-accreditations p { color: #555; font-size: 14px; margin-bottom: 6px; }
.contact-accreditations strong { color: #353535; font-weight: 700; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer { background: #1c2b35; color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }

.footer-col h5 {
  position: relative;
  color: #fff; font-size: 21px; text-transform: uppercase;
  font-weight: 700; padding-bottom: 14px; margin-bottom: 20px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: #10a8e0;
}
.footer-col p { font-size: 17px; line-height: 26px; color: rgba(255,255,255,0.85); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 17px; color: rgba(255,255,255,0.85); transition: color 0.15s; }
.footer-col ul li a:hover { color: #10a8e0; }
.footer-contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #10a8e0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
/* GET IN TOUCH: label line (Email:, phone, hours) */
.footer-contact-text strong {
  display: block; font-size: 17px; font-weight: 400;
  color: #fff; line-height: 22px; margin-bottom: 2px;
}
/* GET IN TOUCH: value line (address, number, times) — lighter */
.footer-contact-text a, .footer-contact-text span {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5);
}
.footer-contact-text a:hover { color: #10a8e0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 15px; color: rgba(255,255,255,0.6); margin: 0; }
.back-to-top { background: #10a8e0; color: #fff; border: none; padding: 7px 16px; border-radius: 3px; font-size: 0.8rem; cursor: pointer; transition: background 0.2s; }
.back-to-top:hover { background: #0b87b5; }

/* Layout utility */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up    { transform: translateY(24px); }
.fade-in-left  { transform: translateX(-24px); }
.fade-in-right { transform: translateX(24px); }

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Sections that must NOT inherit the generic padding */
.hero-slider { padding: 0; }
.service-cards-section { padding: 0; } /* has own padding set below */

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-content-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  /* feature items still single-row at tablet, but can shrink */
  .feature-bar-items { gap: 20px; }
  .feature-item { flex-shrink: 1; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    padding: 8px 0; gap: 0; z-index: 300;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 11px 20px; border-radius: 0; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; border-left: 3px solid #10a8e0; margin-left: 20px; display: none; border-radius: 0; }
  .has-dropdown.open .dropdown-menu { display: block; }

  /* Feature bar: stack items vertically, call button full-width below */
  .feature-bar .container { flex-direction: column; align-items: stretch; gap: 0; padding: 0; }
  .feature-bar-items { flex-direction: column; gap: 0; }
  .feature-item {
    padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.07);
    align-items: center;
  }
  .call-btn {
    width: 100%; text-align: center; border-radius: 0;
    min-height: 48px; padding: 0 20px; font-size: 0.85rem;
  }

  /* Slider: hide arrows on mobile, tighten content */
  .slider-btn { display: none; }
  .hero-slider { height: 340px; }
  .slide-content { padding: 20px 20px 48px 20px; align-items: flex-start; text-align: left; }
  .slide-content h2 { font-size: 1.6rem; line-height: 1.2; }
  .slide-content p { font-size: 0.9rem; margin-bottom: 14px; text-align: left; max-width: 100%; }
  .slide-content .btn-slide { padding: 10px 24px; align-self: flex-start; font-size: 0.82rem; }

  .service-cards-section { margin-top: -44px; }
  .service-cards-box { padding: 32px 16px 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 1px solid #eee; padding: 20px 16px; }
  .card:last-child { border-bottom: none; }

  .values-grid { grid-template-columns: 1fr; }
  .value-circle { width: 88px; height: 88px; font-size: 1.6rem; }
  .about-contact-bar { grid-template-columns: 1fr; }
  .related-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-banner { height: 200px; }
  .page-title-bar h1 { font-size: 1.4rem; }
}
