/* ========================= RESET & BASE ========================= */
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, font, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFFFFF;
  color: #25465C;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25465C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EB8334;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  color: #25465C;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  h4 { font-size: 1rem; }
}

p, .subheadline {
  font-size: 1.125rem;
  color: #25465C;
  margin-bottom: 12px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #25465C;
}
strong, b {
  font-weight: 600;
}
address {
  font-style: normal;
  font-size: 1rem;
  color: #25465C;
  line-height: 1.55;
}

/* ========================= LAYOUT CONTAINER ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F9FAFB;
  border-radius: 18px;
}
@media (max-width: 900px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* Mandatory flex layouts & gap rules */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(37,70,92,0.04); transition: box-shadow 0.25s; }
.card:hover { box-shadow: 0 4px 24px rgba(37,70,92,0.10); }
.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: center; gap: 20px; padding: 20px; background: #fff; border-radius: 14px; box-shadow: 0 1px 10px rgba(37,70,92,0.07); margin-bottom: 20px; min-width: 0; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========================= HEADER & NAV ========================= */
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 8px rgba(37,70,92,0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
/* Logo */
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #25465C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 5px 0;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
}
nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  margin: 4px auto 0;
  background: #EB8334;
  border-radius: 2px;
  transition: width 0.23s;
}
nav a:hover:after, nav a:focus:after { width: 80%; }
nav a:hover, nav a:focus { color: #EB8334; }

.cta.primary,
.cta.accent {
  display: inline-block;
  border: none;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.15s;
  box-shadow: 0 1px 6px rgba(37,70,92,0.07);
  margin-left: 12px;
  margin-bottom: 0;
  outline: none;
}
.cta.primary {
  background: #25465C;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #EB8334;
  color: #fff;
  box-shadow: 0 2px 20px rgba(235,131,52,0.12);
}
.cta.accent {
  background: #EB8334;
  color: #fff;
}
.cta.accent:hover, .cta.accent:focus {
  background: #25465C;
  color: #fff;
  box-shadow: 0 2px 20px rgba(37,70,92,0.14);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #F9FAFB;
  border: none;
  border-radius: 6px;
  font-size: 2rem;
  color: #25465C;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EB8334;
  color: #fff;
}

/* Responsive Nav: Hide desktop nav & show burger on mobile */
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary, .cta.accent {
    padding: 11px 17px;
    font-size: 1rem;
    margin-left: 6px;
  }
}

/* ========================= MOBILE MENU ========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 2px 20px rgba(37,70,92,0.08);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #25465C;
  font-size: 2rem;
  padding: 24px 16px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #EB8334;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 36px 24px 36px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #25465C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 13px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #fff;
  background: #EB8334;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ========================= HERO & SECTIONS ========================= */
main {
  width: 100%;
  margin-top: 0px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    padding: 28px 0;
    margin-bottom: 36px;
  }
  .content-wrapper { gap: 12px; }
}

/* ========================= GRIDS & LISTS ========================= */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  margin: 18px 0 10px 0;
  align-items: center;
  justify-content: flex-start;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 2px 10px rgba(37,70,92,0.08);
  font-size: 1.08rem;
  color: #25465C;
  font-family: 'Open Sans', Arial, sans-serif;
  min-width: 230px;
  margin-bottom: 0;
}
.features-list img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.workshop-list, .service-list, .usp-list, .core-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0;
  padding-left: 0;
}
.usp-list li, .core-values li {
  background: #F9FAFB;
  border-radius: 7px;
  padding: 9px 15px;
  font-size: 1.04rem;
  color: #25465C;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 20px 0;
}
.service-card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 14px rgba(37,70,92,0.07);
  padding: 22px 22px 16px 22px;
  flex: 1 1 220px;
  min-width: 230px;
  min-height: 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.22s;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.service-card .price {
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #EB8334;
  font-size: 1.1rem;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(37,70,92,0.09);
}

@media (max-width: 900px) {
  .services-grid {
    gap: 18px;
    flex-direction: column;
  }
  .service-card {
    max-width: 100%;
  }
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0;
}
.team-member {
  background: #FFFFFF;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(37,70,92,0.07);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.short-bio {
  color: #25465C;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .team-list {
    gap: 12px;
    flex-direction: column;
  }
  .team-member {
    max-width: 100%;
  }
}

/***** FAQ Section *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0 10px 0;
}
.faq-item {
  background: #F9FAFB;
  border-radius: 9px;
  box-shadow: 0 1px 7px rgba(37,70,92,0.05);
  padding: 17px 20px;
  color: #25465C;
  transition: box-shadow 0.19s;
}
.faq-item h3 {
  font-size: 1.09rem;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 3px 16px rgba(37,70,92,0.08);
}

@media (max-width: 700px) {
  .faq-item {
    padding: 13px 11px;
  }
}

/***** Testimonial Cards and Slider *****/
.testimonials-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 24px 18px 24px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2.5px 16px rgba(37,70,92,0.10);
  max-width: 330px;
  min-width: 220px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  color: #25465C;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(235,131,52,0.07);
  border-color: #EB833433;  
}
.testimonial-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #EB8334;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: #25465C;
  opacity: 0.72;
  align-self: flex-end;
}

@media (max-width: 800px) {
  .testimonials-slider, .testimonial-grid {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 20px 14px 14px 14px;
  }
}

/***** Contact/Map section *****/
.map-section {
  background: #F9FAFB;
  color: #25465C;
  border-radius: 7px;
  padding: 11px 18px;
  margin: 22px 0 12px 0;
  font-size: 1.05rem;
}
.cta-area {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 18px 0 0 0;
}

/***** Misc - text-sections *****/
.text-section {
  margin-bottom: 8px;
}

/***** RESPONSIVE IMAGES IN FEATURE GRIDS *****/
.features-list img, .services-grid img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 0;
}

/***** TEXT IMAGE SECTION FLEX LAYOUT *****/
.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: 16px;
  }
}

/* ========================= FOOTER ========================= */
footer {
  background: #F9FAFB;
  padding: 40px 0 22px 0;
  border-top: 1px solid #ECECEC;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
.footer-nav a {
  color: #25465C;
  opacity: 0.87;
  transition: color 0.14s;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EB8334;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-info img {
  width: 48px;
  height: 48px;
}
.footer-info address a {
  color: #25465C;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-info address a:hover {
  color: #EB8334;
}
.footer-legal {
  font-size: 0.98rem;
  color: #828790;
  opacity: 0.80;
  margin-top: 12px;
}
.footer-legal a {
  color: #25465C;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-legal a:hover {
  color: #EB8334;
}

@media (max-width: 768px) {
  footer .container {
    gap: 15px;
    padding: 0 7px;
  }
  .footer-info {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.98rem;
    flex-wrap: wrap;
    margin-bottom: 3px;
  }
}

/***** LINKS AND BUTTONS - ALL STATES *****/
button, .cta.primary, .cta.accent {
  cursor: pointer;
  outline: none;
  border: none;
}
button:focus, .cta:focus {
  outline: 2px solid #EB8334;
  outline-offset: 2px;
}

/***** FORM / INPUT (for possible future forms) *****/
input, textarea, select {
  border-radius: 7px;
  border: 1px solid #E3E6E2;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  outline: none;
  background: #fff;
  transition: border 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #EB8334;
}

/***** MICRO-INTERACTIONS & TRANSITIONS *****/
.card, .service-card, .testimonial-card, .faq-item, .team-member {
  transition: box-shadow 0.22s, border-color 0.22s;
}
.cta, button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

/***** OVERRIDES & UTILITIES *****/
.bg-primary { background: #25465C; color: #fff; }
.bg-accent { background: #EB8334; color: #fff; }
.bg-secondary { background: #F9FAFB; color: #25465C; }
.text-accent { color: #EB8334; }

/***** CUSTOM SPACING HELPERS *****/
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 16px; }
.pt-24 { padding-top: 24px; }
.pb-24 { padding-bottom: 24px; }

/***** MOBILE-FRIENDLY FLEX COLUMNS *****/
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .services-grid, .team-list, .features-list, .testimonial-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 13px;
  }
}
/***** END FLEXBOX ADAPTATIONS *****/

/***** COOKIE CONSENT BANNER + CONSENT MODAL *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #25465C;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 24px 20px 22px 20px;
  z-index: 500;
  box-shadow: 0 -2px 20px rgba(37,70,92,0.09);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  transition: transform 0.35s cubic-bezier(.7,-0.5,.4,1.7), opacity 0.19s;
}
.cookie-banner.inactive {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 480px;
  text-align: left;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  padding: 11px 19px;
  font-weight: 600;
  font-size: 0.99rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(37,70,92,0.04);
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .accept {
  background: #EB8334;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #25465C;
}
.cookie-banner .reject {
  background: #fff;
  color: #25465C;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #EB8334;
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  color: #EB8334;
  border: 2px solid #EB8334;
  padding: 9px 17px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #EB8334;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    padding: 15px 6px 15px 6px;
  }
  .cookie-banner .cookie-actions { gap: 6px; }
}

/***** COOKIE MODAL ******/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1001;
  width: 100vw;
  height: 100vh;
  background: rgba(41,41,51,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal.inactive {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #25465C;
  border-radius: 16px;
  box-shadow: 0 6px 50px rgba(37,70,92,0.18);
  padding: 38px 26px 27px 26px;
  min-width: 330px;
  max-width: 97vw;
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  margin-bottom: 16px;
}
.cookie-modal-content .categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 21px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.06rem;
}
.cookie-category .toggle {
  width: 38px;
  height: 22px;
  position: relative;
  border-radius: 22px;
  background: #EFEFE4;
  cursor: pointer;
  margin-top: 2px;
}
.cookie-category .toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.19s, background 0.17s;
}
.cookie-category .toggle input:checked + span {
  left: 18px;
  background: #EB8334;
}
.cookie-category.essential .toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 19px;
}
.cookie-modal-content button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  padding: 9px 16px;
  border: none;
  cursor: pointer;
  background: #EB8334;
  color: #fff;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-content button.cancel {
  background: #F9FAFB;
  color: #25465C;
}
.cookie-modal-content button.cancel:hover {
  background: #EB8334;
  color: #fff;
}
.cookie-modal-content button.save:hover {
  background: #25465C;
  color: #fff;
}

@media (max-width: 500px) {
  .cookie-modal-content {
    min-width: 230px;
    padding: 22px 7px 17px 7px;
    font-size: 0.98rem;
  }
}

/***** ANIMATION CLASSES *****/
.fade-in {
  animation: fadeInAnim 0.51s cubic-bezier(.7,-0.5,.26,1.7);
}
@keyframes fadeInAnim {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/***** KEYBOARD FOCUS SUPPORTED *****/
:focus-visible {
  outline: 2px solid #EB8334;
}

/* ========================= END ========================= */
