/* RESET & BASICS */
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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #f5f3f0 0%, #fff 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #233B6C;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
}
hr { border: none; border-top: 1px solid #e4e4e4; margin: 32px 0; }

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #233B6C;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #233B6C;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #233B6C;
  margin-bottom: 12px;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #233B6C;
  margin-bottom: 10px;
}
strong { font-weight: 700; }

/* CONTAINER & SECTION LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 8px rgba(35, 59, 108, 0.05);
  padding: 0 20px;
  min-height: 70px;
}
header > a img {
  height: 48px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #233B6C;
  letter-spacing: 0.01em;
  padding: 10px 4px;
  border-radius: 4px;
  transition: background 0.18s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #E94F37;
  color: #fff;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #E94F37 0%, #B72E1D 100%);
  color: #fff;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.06rem;
  box-shadow: 0 2px 8px rgba(51,51,51,0.05);
  transition: box-shadow 0.2s, background 0.2s, transform 0.18s;
  display: inline-block;
  margin-left: 18px;
  text-align: center;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #233B6C 0%, #E94F37 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(35,59,108,0.1);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU BUTTONS */
.mobile-menu-toggle {
  display: none;
  background: #E94F37;
  color: #fff;
  font-size: 2rem;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  margin-left: 18px;
  border: none;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #233B6C;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #233B6C;
  color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
  padding-left: 0;
  transition: transform 0.4s cubic-bezier(.785,.135,.15,.86);
  transform: translateX(-100vw);
  box-shadow: 0 2px 24px rgba(35,59,108,0.12);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: transparent;
  align-self: flex-end;
  margin: 20px 24px 20px 0;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #B72E1D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 36px;
  gap: 18px;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 6px;
  border-radius: 4px;
  display: block;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 4px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #E94F37;
  color: #fff;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #FFFFFF 0%, #F5F3F0 100%);
  min-height: 420px;
  border-radius: 0 0 80px 80px/0 0 32px 32px;
  box-shadow: 0 4px 32px rgba(233,79,55,0.04);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  max-width: 750px;
}
.hero h1 {
  font-size: 2.8rem;
}
.hero h2 {
  font-size: 1.3rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233B6C;
  font-weight: 400;
  margin-bottom: 14px;
}

/* USP + SERVICES LIST */
.usp-list, .services-list, .service-overview, .feature-list, .team-list, .workshop-list, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.usp-list li, .services-list li, .service-overview li, .feature-list li, .team-list li, .workshop-list li, .benefit-list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(35,59,108,0.08);
  padding: 28px 24px 24px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #E94F37;
  transition: box-shadow 0.16s, transform 0.19s;
}
.usp-list li:hover, .services-list li:hover, .service-overview li:hover, .feature-list li:hover, .team-list li:hover, .workshop-list li:hover, .benefit-list li:hover {
  box-shadow: 0 6px 40px rgba(35,59,108,0.10);
  transform: translateY(-2px) scale(1.02);
}
.usp-list img, .feature-list img, .benefit-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.services-list span, .service-overview span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B72E1D;
  font-weight: 500;
}

/* TESTIMONIAL CARDS & SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 18px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(35,59,108,0.11);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 280px;
  max-width: 400px;
  color: #1B2947;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #233B6C;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #B72E1D;
  font-weight: 500;
}
.testimonial-card strong {
  color: #E94F37;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 20px;
}
.address-block, .email-block, .hours-block {
  font-family: 'Roboto', Arial, sans-serif;
  color: #233B6C;
  padding: 20px 24px;
  background: #f6f7fa;
  border-radius: 12px;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 1px 8px rgba(35,59,108,0.04);
}
.contact-details a.cta-button {
  margin-top: 0;
  margin-left: 10px;
}

/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(35,59,108,0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 250px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* FLEX LAYOUT UTILS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TEXT SECTION / GENERAL */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.text-section ul {
  margin-bottom: 0;
  padding-left: 18px;
}
.text-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E94F37;
  position: absolute;
  left: 0;
  top: 7px;
}

/* FOOTER */
footer {
  background: #233B6C;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 36px 0;
  margin-top: 60px;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 14px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.91;
  transition: color 0.16s, opacity 0.15s;
  padding: 8px 8px;
}
footer nav a:hover, footer nav a:focus {
  color: #E94F37;
  opacity: 1;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.footer-branding img {
  width: 46px;
  height: 46px;
}
.footer-branding p {
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.85;
}

/* BUTTONS */
button, .cta-button, .cookie-btn {
  cursor: pointer;
  outline: none;
}

/* HIDE DESKTOP NAV ON MOBILE */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* RESPONSIVE SECTION & LAYOUTS */
@media (max-width: 768px) {
  .hero {
    min-height: 280px;
    border-radius: 0 0 30px 30px/0 0 12px 12px;
    padding-top: 32px;
    margin-bottom: 40px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 8px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper, .testimonial-slider {
    gap: 12px;
  }
  .usp-list,
  .services-list,
  .service-overview,
  .feature-list,
  .team-list,
  .workshop-list,
  .benefit-list,
  .testimonial-slider,
  .card-container,
  .contact-details,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card,
  .card-content,
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    font-size: 0.98rem;
  }
  h1, .hero h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .footer-branding img {
    width: 38px;
    height: 38px;
  }
}

/* ANIMATIONS & HOVER STATES */
.cta-button, .cookie-btn {
  transition: background 0.18s, color 0.12s, box-shadow 0.19s, transform 0.2s;
}
.card:hover, .testimonial-card:hover, .usp-list li:hover, .services-list li:hover, .feature-list li:hover {
  box-shadow: 0 4px 30px rgba(35,59,108,0.13);
  transform: translateY(-3px) scale(1.02);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #233B6C;
  color: #fff;
  z-index: 120;
  box-shadow: 0 -2px 16px rgba(35,59,108,0.09);
  padding: 30px 18px 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.35s cubic-bezier(.785,.135,.15,.86), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  margin: 0;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 28px;
  background: #E94F37;
  color: #fff;
  padding: 10px 26px;
  margin-left: 18px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(183,46,29,0.10);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B72E1D;
}
.cookie-btn.settings {
  background: #fff;
  color: #E94F37;
  border: 1px solid #E94F37;
  margin-left: 10px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E94F37;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    padding: 14px 8px 18px 10px;
  }
  .cookie-btn {
    margin-left: 0;
    margin-top: 8px;
    min-width: 120px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 150;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,59,108,0.52);
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #233B6C;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(35,59,108,0.13);
  padding: 38px 32px 24px 32px;
  max-width: 410px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: popupIn 0.25s ease;
  position: relative;
}
@keyframes popupIn {
  from { transform: translateY(80px) scale(0.93); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #233B6C;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-cat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-cat-item label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #233B6C;
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
}
.cookie-cat-item input[type="checkbox"] {
  accent-color: #E94F37;
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.cookie-cat-item .always {
  color: #B72E1D;
  font-size: 0.95rem;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 1.8rem;
  color: #E94F37;
  background: transparent;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #233B6C;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 10px 16px 10px;
    max-width: 97vw;
  }
  .cookie-modal-close {
    right: 9px;
    top: 9px;
  }
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 10px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #E94F37;
  border-radius: 5px;
}
::-webkit-input-placeholder { color: #B72E1D; opacity: 0.8; }
::-moz-placeholder { color: #B72E1D; opacity: 0.8; }
:-ms-input-placeholder { color: #B72E1D; opacity: 0.8; }
::placeholder { color: #B72E1D; opacity: 0.8; }

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #233B6C;
  outline-offset: 2px;
}

/* FORM STYLES (if used) */
input, textarea, select {
  background: #fff;
  border: 1.5px solid #E94F37;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #233B6C;
  box-shadow: 0 1px 4px rgba(35,59,108,0.06);
}
input:focus, textarea:focus, select:focus {
  border-color: #233B6C;
}

/* MODERN SHADOWS & HOVER EFFECTS */
.card, .testimonial-card, .usp-list li, .feature-list li, .services-list li {
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .usp-list li:hover, .feature-list li:hover, .services-list li:hover {
  box-shadow: 0 6px 32px rgba(183,46,29,0.12);
  transform: translateY(-1px) scale(1.016);
}

/* PRINTING IMPROVEMENTS */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  .section, .container { padding: 0 !important; margin: 0 !important; }
}
