/*--- CSS RESET & NORMALIZE ---*/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F6F0;
  color: #15304A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #3CA679;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #15304A;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15304A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.subheadline {
  font-size: 1.25rem;
  color: #3CA679;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1B2637;
}
blockquote {
  margin: 28px 0;
  font-style: italic;
  color: #3CA679;
  border-left: 4px solid #3CA679;
  padding-left: 18px;
  font-size: 1.1rem;
  background: rgba(60, 166, 121, 0.07);
}

/*--- CONTAINER ---*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*--- MAIN NAVIGATION ---*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(21,48,74,0.06);
  position: sticky;
  top: 0;
  z-index: 21;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
  justify-content: flex-start;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  color: #15304A;
  transition: background 0.21s, color 0.21s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F8F6F0;
  color: #3CA679;
}
.main-nav .btn-primary {
  background: #3CA679;
  color: #fff;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(60,166,121,0.07);
  transition: background 0.22s, transform 0.18s;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #15304A;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/*--- MOBILE MENU ---*/
.mobile-menu-toggle {
  display: none;
  background: #3CA679;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  margin-right: 12px;
  transition: background 0.17s;
  position: relative;
  z-index: 30;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #15304A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #15304A;
  color: #fff;
  padding: 42px 32px 32px 32px;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #3CA679;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  font-size: 1.15rem;
}
.mobile-nav a {
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #253C57;
  transition: color 0.18s, background 0.12s;
  border-radius: 0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #3CA679;
  background: rgba(255,255,255,0.09);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.96rem;
  }
  .main-nav .btn-primary {
    padding: 9px 18px;
    font-size: 0.96rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/*--- HERO SECTION ---*/
.hero {
  background: linear-gradient(120deg, #F8F6F0 82%, #3CA679 140%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 10px solid #3CA679;
}
.hero .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*--- CTA ---*/
.cta {
  background: #3CA679;
  color: #fff;
  border-radius: 22px 22px 0 0/9px 9px 0 0;
  box-shadow: 0 3px 20px rgba(21,48,74,0.06);
  margin-top: 48px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2, .cta p {
  color: #fff;
}

/*--- FEATURES & SERVICES ---*/
.features, .services, .progression, .about, .team, .why-choose-us, .workshops, .online-learning, .contact-info, .map, .legal, .thanks, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(21,48,74,0.04);
}
.features {
  background: #F8F6F0;
  border: 2px solid #3CA679;
}
.sections {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*--- COMMON WRAPPERS ---*/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}

/*--- FLEX LAYOUT UTILITIES (MANDATORY) ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(21,48,74,0.05);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 260px;
}
.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;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--- FEATURES GRID ---*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  align-items: stretch;
  list-style: none;
}
.feature-grid li {
  background: #fff;
  border: 1.5px solid #3CA679;
  color: #15304A;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(60,166,121,0.06);
  padding: 20px 18px 20px 24px;
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  margin-bottom: 0;
}
.feature-grid img {
  width: 36px; height: 36px;
  margin-right: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #F8F6F0;
}

/*--- SERVICES ---*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-item {
  flex: 1 1 268px;
  min-width: 252px;
  background: #f9fafb;
  border: 1.5px solid #15304A;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(21,48,74,0.06);
  padding: 22px 20px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.24s;
}
.service-item:hover,
.service-item:focus-within {
  box-shadow: 0 6px 28px rgba(60,166,121,0.09);
  transform: translateY(-3px) scale(1.027);
  border-color: #3CA679;
}
.service-price {
  font-size: 1.02rem;
  font-weight: 700;
  color: #3CA679;
  background: #fff;
  border-radius: 8px;
  padding: 5px 13px;
  border: 1.5px solid #3CA679;
  align-self: flex-end;
  margin-top: 8px;
  margin-bottom: 0;
}

/*--- WORKSHOPS ---*/
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
}

/*--- TESTIMONIAL CARDS ---*/
.testimonials, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.testimonial-slider,
.testimonial-list {
  flex-wrap: wrap;
}
.testimonial-card {
  flex: 1 1 260px;
  min-width: 230px;
  background: #fff;
  border: 1.5px solid #3CA679;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(60,166,121,0.09);
  padding: 22px 26px 20px 22px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  color: #15304A;
  font-size: 1.08rem;
}
.testimonial-name {
  color: #3CA679;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0;
  margin-top: 10px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(60,166,121,0.16);
}

/*--- BUTTONS ---*/
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(60,166,121,0.07);
  transition: background 0.2s, color 0.18s, box-shadow 0.21s, transform 0.16s;
  letter-spacing: 0.10em;
  outline: none;
  margin-top: 14px;
}
.btn-primary {
  background: #3CA679;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #15304A;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 22px rgba(21,48,74,0.12);
}
.btn-secondary {
  background: #F8F6F0;
  color: #15304A;
  border: 1.5px solid #15304A;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #3CA679;
  color: #fff;
  border-color: #3CA679;
  transform: translateY(-2px) scale(1.04);
}

/*--- FOOTER ---*/
footer {
  background: #15304A;
  color: #F8F6F0;
  padding: 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0 28px 0;
  justify-content: space-between;
}
.footer-main img {
  height: 58px;
  width: auto;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F8F6F0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #3CA679;
}
footer address {
  font-style: normal;
  color: #c8d2e4;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 4px;
}
footer address img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px 0 3px;
}

/*--- LEGAL SECTIONS ---*/
.legal {
  background: #fff;
  border: 1.5px solid #15304A;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1,H2 {
  color: #15304A;
}

/*--- THANKS PAGE ---*/
.thanks .content-wrapper {
  align-items: center;
  text-align: center;
}

/*--- MEDIA QUERIES: RESPONSIVENESS ---*/
@media (max-width: 980px) {
  .service-list,
  .feature-grid,
  .workshop-list,
  .card-container,
  .testimonial-slider,
  .testimonial-list,
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .footer-main {
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  .hero {
    min-height: 160px;
    border-bottom-width: 7px;
  }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
  .container {
    padding: 0 10px;
  }
  .section,
  .features, .services, .progression, .about, .team, .why-choose-us, .workshops, .online-learning, .contact-info, .map, .legal, .thanks, .testimonials {
    padding: 26px 6px;
  }
  .feature-grid li, .service-item, .testimonial-card {
    min-width: unset;
    padding: 16px 10px 16px 14px;
  }
  .service-price {
    font-size: 0.93rem;
    padding: 4px 9px;
  }
  .cta {
    margin-top: 30px;
    border-radius: 16px 16px 0 0/6px 6px 0 0;
  }
  .footer-main {
    padding: 24px 0 18px 0;
  }
  .text-image-section {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .card, .service-item, .testimonial-card {
    padding: 10px 6px 13px 10px;
  }
  .footer-main img { height: 44px; }
}
@media (max-width: 460px) {
  /* adjust padding for small screens */
  .section,
  .features, .services, .progression, .about, .team, .why-choose-us, .workshops, .online-learning, .contact-info, .map, .legal, .thanks, .testimonials {
    padding: 12px 0px 12px 0px;
  }
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #15304A;
  color: #fff;
  padding: 22px 18px;
  box-shadow: 0 -2px 16px rgba(21,48,74,0.18);
  display: flex;
  flex-wrap: wrap;
  z-index: 3002;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  gap: 18px;
  border-radius: 22px 22px 0 0/9px 9px 0 0;
  animation: cookieIn 0.37s cubic-bezier(0.66,0,0.26,1.09);
}
@keyframes cookieIn {
  from { transform: translateY(110px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-message {
  flex: 1 1 220px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 7px;
  border: none;
  margin: 0;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-accept {
  background: #3CA679;
  color: #fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #158353;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #15304A;
  border: 1.3px solid #3CA679;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #3CA679;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #F8F6F0;
  color: #3CA679;
  border: 1.1px solid #3CA679;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #3CA679;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    border-radius: 16px 16px 0 0/5px 5px 0 0;
    font-size: 0.97rem;
  }
}

/*--- COOKIE PREFERENCES MODAL ---*/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,48,74, 0.28);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  min-width: 330px;
  max-width: 98vw;
  background: #fff;
  border-radius: 18px;
  padding: 32px 22px 28px 28px;
  box-shadow: 0 6px 24px rgba(21,48,74,0.26);
  color: #15304A;
  position: relative;
  animation: modalIn 0.33s cubic-bezier(0.58,0,0.34,1.2);
}
@keyframes modalIn {
  from { transform: translateY(48px) scale(0.92); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 17px;
  font-size: 1.4rem;
}
.cookie-modal ul {
  padding-left: 18px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-save {
  background: #3CA679;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 16px;
}
.cookie-modal .cookie-save:hover,
.cookie-modal .cookie-save:focus {
  background: #15304A;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #3CA679;
  position: absolute;
  top: 6px; right: 8px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #15304A;
}
@media (max-width: 540px) {
  .cookie-modal {
    min-width: 220px;
    padding: 15px 5px 11px 11px;
  }
}

/*--- GEOMETRIC/STRUCTURED VISUAL ELEMENTS ---*/
hr, .visual-divider {
  border: none;
  border-bottom: 3.5px solid #3CA679;
  width: 84px;
  margin: 32px 0;
  border-radius: 6px;
  background: none;
}

/*--- GEOMETRIC BUTTON ACCENTS AND SHAPES ---*/
.btn-primary, .btn-secondary {
  border-radius: 23px 7px 23px 7px /15px 7px 15px 7px;
  box-shadow: 0 3px 16px rgba(60,166,121,0.08);
}
.feature-grid li, .service-item, .testimonial-card, .card {
  border-radius: 16px 8px 16px 8px / 14px 7px 14px 7px;
  position: relative;
  overflow: hidden;
}
.feature-grid li:before, .service-item:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; right: -18px;
  width: 48px; height: 48px;
  background: rgba(60,166,121,0.07);
  clip-path: polygon(100% 0, 0 40%, 100% 100%);
  z-index: 0;
}
.card:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -23px; left: -17px;
  width: 49px; height: 49px;
  background: rgba(21,48,74,0.12);
  clip-path: polygon(0 0, 100% 70%, 0 100%);
  z-index: 0;
}

/*--- GEOMETRIC ICONS INSIDE CARDS ---*/
.service-item img, .feature-grid img {
  border-radius: 5px;
  background: #F8F6F0;
  border: 1.2px solid #3CA679;
  padding: 3.5px;
  margin-bottom: 3px;
}

/*--- VISUAL HIERARCHY SPACING ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .service-list, .feature-grid, .content-grid, .testimonial-slider, .testimonial-list, .workshop-list {
  gap: 24px;
}
.card, .service-item, .testimonial-card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  gap: 15px;
}

/*--- ACCESSIBILITY & CONTRAST ---*/
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #15304A;
  background: #fff;
  border-color: #3CA679;
}

/*--- FORM ELEMENTS ---*/
input, textarea, select {
  border-radius: 7px;
  border: 1.2px solid #15304A;
  padding: 9px 13px;
  font-size: 1rem;
  margin-bottom: 12px;
  outline: none;
  background: #fff;
  color: #15304A;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid #3CA679;
}
label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}

/*--- UTILITY CLASSES ---*/
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  border-width: 0 !important;
  padding: 0!important;
}

/*--- FOCUS STATES, HOVER EFFECTS ---*/
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, input:focus, textarea:focus {
  outline: 2.5px dashed #3CA679;
  outline-offset: 2px;
}

/*--- ANIMATIONS & MICRO-INTERACTIONS ---*/
.card, .service-item, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.23s cubic-bezier(0.3,0.8,0.4,1), transform 0.16s;
}
.card:hover, .service-item:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(21,48,74,0.14);
  transform: translateY(-3px) scale(1.032);
  z-index: 2;
}

/*--- GEOMETRIC TYPOGRAPHY ---*/
html {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
}

/*--- SCROLLBAR STYLES (optional, aesthetic) ---*/
::-webkit-scrollbar {
  width: 11px;
  background: #F8F6F0;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb {
  background: #3CA679;
  border-radius: 20px;
}

/*--- PREVENT OVERLAPS WITH ADEQUATE SPACING ---*/
.card-container > *, .service-list > *, .feature-grid > *, .testimonial-list > *, .workshop-list > * {
  margin-bottom: 0 !important;
}

/*--- END OF STYLE.CSS ---*/
