/* RESET & BASE STYLES */
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, menu, 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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #fff;
  color: #111;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  background-color: #fafbfc;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #22426B;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px dashed #E08E2D;
  outline-offset: 2px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h1 { font-size: 2.625rem; line-height: 1.15; margin-bottom: 28px; }
h2 { font-size: 1.85rem; line-height: 1.22; margin-bottom: 20px; }
h3 { font-size: 1.35rem; line-height: 1.22; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 12px; }
p, ul, ol, .text-section { margin-bottom: 18px; color: #222; }
.text-section p:last-child { margin-bottom: 0; }
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 30px;
  font-weight: 400;
}
strong { font-weight: bold; }

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:last-of-type {
  margin-bottom: 0;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 28px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.logo-link img {
  height: 44px;
  width: auto;
  margin-right: 10px;
  transition: opacity 0.18s;
}
.logo-link:hover img,
.logo-link:focus img { opacity: 0.86; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
  padding: 8px 2px;
  border-radius: 2px;
  transition: color 0.16s, background 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus { color: #22426B; background: #F2F3F6; }
.main-nav .cta.primary {
  margin-left: 16px;
  background: #111;
  color: #FFF;
  padding: 11px 24px;
  border-radius: 32px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: background 0.16s, color 0.16s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #22426B;
  color: #FFF;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #111;
  cursor: pointer;
  z-index: 1301;
  padding: 8px 16px;
  line-height: 1;
  margin-left: 16px;
  border-radius: 4px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f1f1f1;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 36px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #111;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 34px;
  padding: 4px 9px;
  border-radius: 3px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #f2f2f2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #111;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 6px;
  width: 100%;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus { background: #f5f5f5; color: #22426B; }

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  .main-nav .cta.primary { margin-left: 8px; padding: 10px 12px; }
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.95rem; }
  .main-nav .cta.primary { font-size: 1rem;}
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .container { padding-left: 12px; padding-right: 12px; }
}

/* HERO & CTA */
.hero, .hero-thankyou {
  background: #fff;
  padding: 70px 0 60px 0;
  margin-bottom: 60px;
  box-shadow: 0 5px 30px rgba(30,30,30,0.06);
}
.hero-thankyou {
  background: #F5F6FA;
  text-align: center;
}
.hero .content-wrapper, .hero-thankyou .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 700px;
  gap: 18px;
}
.hero-thankyou .content-wrapper {
  align-items: center;
  text-align: center;
}
@media (max-width: 700px) {
  .hero, .hero-thankyou { padding: 34px 0 32px 0; }
}

.cta, .cta.primary, .cta.secondary {
  appearance: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 28px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 2px 18px rgba(34,66,107,0.11);
  margin-right: 12px;
  margin-bottom: 8px;
  text-align: center;
  min-width: 140px;
}
.cta.primary {
  background: #111;
  color: #fff;
  border: none;
  box-shadow: 0 2px 16px rgba(10,10,10,0.08);
  letter-spacing: 0.01em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #22426B;
  color: #fff;
}
.cta.secondary {
  background: #fff;
  color: #22426B;
  border: 2px solid #22426B;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #22426B;
  color: #fff;
}

/* FEATURE LISTS */
.features, .why-us, .team-qualifications, .didactic-focus {
  background: #fafbfc;
}
.features .content-wrapper, .why-us .content-wrapper,
.team-qualifications .content-wrapper, .didactic-focus .content-wrapper {
  gap: 20px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 26px;
  font-size: 1.05rem;
  color: #222;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0px;
  box-shadow: 0 2px 10px rgba(26,26,26,0.045);
  min-width: 0;
}
.feature-list li img {
  width: 34px; height: 34px;
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.9;
}
@media (max-width: 600px) {
  .feature-list li { padding: 14px 12px; font-size: 0.98rem; }
  .feature-list li img { width: 26px; height: 26px; }
}

/* SERVICE LISTS & CARDS */
.services-overview, .services-offer {
  background: #fafbfc;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 15px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(32,42,56,0.07);
  flex: 1 1 320px;
  padding: 32px 26px 26px 26px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 13px;
  min-width: 260px;
  max-width: 420px;
  border: 1px solid #efeef1;
  transition: box-shadow 0.16s, border 0.18s, transform 0.13s;
}
.service-list li:hover {
  box-shadow: 0 10px 36px rgba(34, 66, 107, 0.12);
  border-color: #22426B22;
  transform: translateY(-5px) scale(1.021);
}
.service-list h3, .service-list h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #111;
}
.service-list p { font-size: 1.08rem; color: #272727; }
.service-list strong {
  color: #22426B;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 730px) {
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-list li { min-width: 0; max-width: 100%; padding: 19px 12px 14px 14px; }
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
.testimonials h2 { margin-bottom: 26px; }
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 18px 28px;
  background: #fafbfc;
  border-radius: 13px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 360px;
  box-shadow: 0 3px 16px rgba(34,42,56,0.08);
  border: 1px solid #ededed;
  transition: box-shadow 0.13s, border 0.14s;
  position: relative;
  color: #191919 !important;
  font-size: 1.07rem;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #22426B;
  font-style: normal;
  line-height: 1.2;
  margin-top: 7px;
}
.testimonial-card blockquote {
  font-size: 1.11rem;
  color: #191919;
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-style: italic;
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #B86916;
  font-size: 1.7em;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 5px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(34,66,107,0.14);
  border-color: #22426B26;
}
@media (max-width: 950px) {
  .testimonial-slider { gap: 18px; }
  .testimonial-card { padding: 16px 14px 12px 14px; }
}
@media (max-width: 700px) {
  .testimonial-slider { flex-direction: column; gap: 20px; }
  .testimonial-card { min-width: 0; }
}

/* CTA CALL AND ENQUIRE */
.cta-call, .cta-enquire, .cta-section {
  text-align: center;
  background: #fff;
  margin-bottom: 60px;
  padding: 42px 0;
  box-shadow: 0 2px 14px rgba(30,30,30,0.04);
  border-radius: 18px;
}
.cta-call h2, .cta-enquire h2, .cta-section h2 {
  margin-bottom: 16px;
  color: #111;
  font-size: 2rem;
}
.cta-call a, .cta-enquire a, .cta-section a {
  margin-top: 18px;
  font-size: 1.17rem;
}
.cta-section p { margin-bottom: 10px; color: #222; }

/* CARDS, CARD CONTAINER, CONTENT-GRID */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(50,50,50,0.11);
  padding: 32px 20px;
  min-width: 240px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card { max-width: 100%; min-width: 0; }
}

/* FLEX UTILITIES */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTACT SECTION */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
}
.contact-info li {
  margin-bottom: 10px;
  color: #222;
}
.contact-info a {
  color: #22426B;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 760px) {
  .contact-info ul { font-size: 0.96rem; }
}

/* FOOTER */
footer {
  background: #111;
  color: #fafbfc;
  padding: 0;
  margin-top: 50px;
  box-shadow: 0 -2px 24px rgba(10,10,10,0.08);
  position: relative;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 20px;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: 0.9;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fafbfc;
  font-size: 1rem;
  opacity: 0.9;
  transition: color 0.16s, opacity 0.16s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: #E08E2D;
  opacity: 1;
}
@media (max-width: 700px) {
  footer .container { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-nav { gap: 14px; }
}

/* FORMS (if any in the future) */
input[type="text"], input[type="email"], input[type="password"], textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1a1a1a;
  margin-bottom: 16px;
  transition: border 0.14s, box-shadow 0.17s;
}
input:focus, textarea:focus {
  border-color: #22426B;
  box-shadow: 0 2px 8px rgba(34,66,107,0.05);
  outline: none;
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  padding: 9px 23px;
  border-radius: 24px;
  border: none;
  background: #22426B;
  color: #fff;
  cursor: pointer;
  transition: background 0.16s;
}
button:hover, input[type="submit"]:hover { background: #111; }

/* GENERAL UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }

::selection { background: #E08E2D; color: #fff; }

/* FOCUS STATES ACCESSIBILITY */
a:focus-visible, button:focus-visible {
  outline: 2px solid #B86916;
  outline-offset: 2px;
}

/* MICRO-ANIMATIONS */
.cta, button, .card, .testimonial-card,
.feature-list li, .footer-nav a,
.main-nav a, .mobile-nav a {
  transition: box-shadow 0.13s, border 0.15s, color 0.13s, background 0.13s, opacity 0.13s, transform 0.09s;
}

/* MONOCHROME-SOPHISTICATED THEME ENFORCEMENT */
body, .content-wrapper, .container, section, .section {
  background: #fff;
  color: #222;
}
h1, h2, h3, .main-nav a, .mobile-nav a {
  color: #111;
}
.card, .service-list li, .feature-list li, .testimonial-card {
  background: #fafbfc;
  border-radius: 14px;
}
footer, header {
  background: #fff;
}
@media (max-width:580px) {
  .section, section{ padding: 24px 5px; }
  .card, .service-list li, .feature-list li, .testimonial-card{ padding: 11px 6px 10px 12px; }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: #222;
  color: #fafbfc;
  box-shadow: 0 -3px 23px rgba(20,20,20,0.19);
  z-index: 1400;
  padding: 20px 10px 12px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: banner-slidein 0.4s cubic-bezier(.32,1.83,.6,1) 1;
}
@keyframes banner-slidein {
  from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-banner-msg {
  font-size: 1rem;
  color: #fafbfc;
  margin-right: 14px;
}
.cookie-banner .cookie-btn {
  background: #22426B;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  margin: 2px 7px;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(34,66,107,0.13);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus{ background: #E08E2D; color: #fff;}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus{ background: #fff; color: #222;}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.2s ease;
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #1a1a1a;
  border-radius: 14px;
  min-width: 320px;
  max-width: 98vw;
  padding: 32px 20px 20px 20px;
  box-shadow: 0 2px 24px rgba(25, 25, 25, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background: #f1f1f1;
  border-radius: 15px;
  margin-right: 11px;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #22426B;
  border-radius: 50%;
  transition: left 0.14s, background 0.14s;
}
.cookie-toggle input:checked + .slider {
  left: 24px;
  background: #E08E2D;
}
.cookie-toggle[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  background: none;
  border: none;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background .13s;
  border-radius: 3px;
  padding: 2px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f2f2f2;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    min-width: 90vw;
    padding: 12px 5px;
  }
  .cookie-modal-content h2 { font-size: 1.14rem; }
}

/* MONOCHROME VARIANTS & DARK CONTRAST */
h1, h2, h3, h4, h5, h6, .footer-brand, .main-nav a, .mobile-nav a {
  color: #111;
}
.section, .content-wrapper, .about-section, .team-intro, .cookie-policy, .terms-conditions, .privacy-policy, .gdpr-info {
  background: #fff;
}

/* MONOCHROME ACCENT */
::-webkit-scrollbar {
  width: 12px;
  background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bdbdbd; }

@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.22rem; }
  .container { padding-left: 8px; padding-right: 8px; }
}

/* MONOCHROME QUOTES COLOR CONTRAST */
blockquote, .testimonial-card blockquote {
  color: #181818 !important;
  font-style: italic;
}

/* LAST: Remove underline from links in main nav and footer */
.main-nav a, .footer-nav a, .mobile-nav a {
  text-decoration: none;
}

/* Ensure no elements overlap - spacing integrity (already ensured via gap/margin-bottom rules) */

/* THE END */