/* ==========================
   CSS 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, 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #fff;
  color: #171717;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 24px;
}

/* ==========================
   FONTS
   ========================== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Lato:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #171717;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; letter-spacing: -1px; }
h2 { font-size: 2rem; letter-spacing: -0.6px; }
h3 { font-size: 1.5rem; letter-spacing: -0.4px; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p, li, address, blockquote, span, label, input, textarea, ul, ol {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232323;
}

strong, b {
  font-weight: 700;
  color: #171717;
}

a {
  color: #171717;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #633726;
  text-decoration: none;
}

/* ==========================
   LAYOUT - CONTAINERS
   ========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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 16px rgba(0,0,0,0.10), 0 1.5px 8px rgba(0,0,0,0.03);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(34,34,34,0.14);
  transform: translateY(-3px) scale(1.015);
}

.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: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.11), 0 0.5px 3px rgba(0,0,0,0.03);
  position: relative;
  border-left: 5px solid #633726;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 38px rgba(34,34,34,0.17);
  border-left: 5px solid #C03A11;
}
.testimonial-card.highlighted {
  background: #f6f6f6;
  border-left: 5px solid #C03A11;
}
.testimonial-card blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  color: #393939;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #633726;
  font-size: 2rem;
  vertical-align: top;
  line-height: 0;
  margin-right: 4px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
  background: #171717;
  color: #fff;
  padding: 68px 20px 68px 20px;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 20px;
}
.hero p {
  color: #f8f8f8;
  max-width: 530px;
  margin-bottom: 24px;
}
.hero .cta-btn {
  background: #fff;
  color: #171717;
  border: 2px solid #633726;
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #633726;
  color: #fff;
  box-shadow: 0 6px 16px rgba(99,55,38,0.09);
}

/* ==========================
   MAIN NAVIGATION
   ========================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(99,55,38,0.05);
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0 12px 0;
}
.main-nav a {
  color: #191919;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 5px;
  padding: 9px 17px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a[aria-current], .main-nav a:focus, .main-nav a:hover {
  background: #633726;
  color: #fff;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 8px;
}

/* ==========================
   MOBILE MENU (BURGER)
   ========================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  line-height: 1;
  color: #171717;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 40;
  margin-left: auto;
  padding: 0 12px;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 19, 19, 0.91);
  backdrop-filter: blur(2.5px);
  transform: translateX(-110vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.37s cubic-bezier(.82,0,.55,1.04);
  z-index: 1001;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  padding: 11px 14px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
  margin: 18px 32px 10px 0;
  z-index: 1200;
  border-radius: 5px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #633726;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 12px;
  align-items: flex-start;
  padding: 14px 36px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  padding: 13px 18px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #633726;
}

/* Burger toggle visibility for mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================
   SECTIONS/LISTS
   ========================== */
section {
  margin-bottom: 52px;
}
.values-list li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 23px;
  margin-bottom: 9px;
  font-weight: 500;
}
.values-list li::before {
  content: "\25AA";
  position: absolute;
  left: 0;
  color: #633726;
  font-size: 0.85em;
}

/* Features grid (section in index, about etc) */
.feature-grid, .service-cards, .features-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.feature-grid > div, .service-cards > div, .features-categories > div {
  flex: 1 1 210px;
  min-width: 215px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(32,32,32,0.07);
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.16s, transform 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
}
.feature-grid > div:hover, .service-cards > div:hover, .features-categories > div:hover {
  box-shadow: 0 7px 20px rgba(99,55,38,.14);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img, .features-categories img {
  width: 39px;
  min-width: 39px;
  margin-bottom: 5px;
}
.feature-grid h3, .features-categories h3 {
  color: #171717;
  margin-bottom: 8px;
  font-size: 1.28rem;
}
.feature-grid p, .features-categories p {
  font-size: 1rem;
  color: #474747;
}

.service-cards > div span, .service-catalog > div span {
  margin-top: 12px;
  display: inline-block;
  color: #633726;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.service-summary {
  margin-top: 8px;
  font-size: 1.07rem;
  color: #232323;
  background: #f8f8f8;
  border-radius: 7px;
  padding: 15px 18px;
}

.service-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 18px;
}
.service-catalog > div {
  flex: 1 1 280px;
  min-width: 210px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(27,27,27,0.07);
  padding: 24px 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-catalog > div:hover {
  box-shadow: 0 6px 20px rgba(99,55,38,0.13);
  transform: translateY(-2px) scale(1.01);
}

.pricing-highlight {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 20px 22px 10px 22px;
  margin-top: 18px;
}
.pricing-highlight h3 {
  font-size: 1.25rem;
  color: #633726;
  margin-bottom: 12px;
}
.pricing-highlight ul li {
  margin-bottom: 6px;
  color: #2a2a2a;
}

.avg-rating, .star-ratings {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.16rem;
  color: #171717;
  margin-top: 13px;
}

/* ==========================
   BUTTONS / CTAS
   ========================== */
.cta-btn {
  display: inline-block;
  background: #633726;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 38px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(99,55,38,0.12);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s, transform 0.16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #C03A11;
  color: #fff;
  box-shadow: 0 5px 18px rgba(192,58,17,0.09);
  transform: translateY(-2px) scale(1.01);
}

/* ==========================
   SECTION STYLES
   ========================== */
.home-cta, .offer-cta, .cta-contacts {
  background: #171717;
  color: #fff;
  border-radius: 16px;
  padding: 48px 22px;
  margin-bottom: 60px;
  margin-top: 22px;
  box-shadow: 0 3px 21px rgba(32,32,32,0.11);
}
.home-cta h2, .offer-cta h2, .cta-contacts h2 {
  color: #fff;
}
.home-cta p, .offer-cta p, .cta-contacts p {
  color: #f3f3f3;
}

.workshops-hero {
  background: #232323;
  color: #fff;
  padding: 50px 20px 68px 20px;
  margin-bottom: 40px;
}
.workshops-hero h1 {
  color: #fff;
}

.thankyou-section {
  background: #fff;
  color: #171717;
  border-radius: 18px;
  padding: 56px 24px;
  margin-bottom: 60px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 3px 24px rgba(0,0,0,0.07);
}

.map-info {
  margin-top: 24px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 22px 19px;
}

.program-highlights {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 19px 17px 9px 17px;
  margin: 14px 0;
}

.price-info {
  background: #fff;
  border-radius: 8px;
  padding: 19px 17px;
  font-weight: 600;
  margin-top: 11px;
}

/* ==========================
   FOOTER STYLES
   ========================== */
footer {
  background: #171717;
  color: #fff;
  padding: 46px 0 37px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.04rem;
  text-decoration: none;
  padding: 7px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #171717;
}

footer address {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 19px 32px;
  justify-content: center;
  font-size: 1rem;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6e6e6;
}
footer address img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  filter: grayscale(1);
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin: 18px 0 0 0;
}
.footer-logo img {
  height: 54px;
  width: auto;
}
.footer-tagline {
  display: flex;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.09rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-top: 16px;
}

/* ==========================
   CONTACT DETAILS
   ========================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.02rem;
  color: #232323;
}
.contact-details img {
  width: 22px;
  height: 22px;
  filter: grayscale(1);
  opacity: 0.82;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */
@media (max-width: 1023px) {
  .container {
    max-width: 97vw;
    padding-left: 13px;
    padding-right: 13px;
  }
  .content-grid, .feature-grid, .service-cards, .service-catalog, .features-categories, .card-container, .testimonial-list, .footer-nav, .footer-logo, .contact-details, .program-highlights, .address {
    flex-direction: column;
    gap: 18px !important;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
  .footer-nav { gap: 18px; }
}
@media (max-width: 768px) {
  .hero {
    padding: 42px 9px 52px 9px;
  }
  .section {
    margin-bottom: 32px;
    padding: 28px 7px;
  }
  .home-cta, .offer-cta, .cta-contacts,
  .thankyou-section, .workshops-hero {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.08rem; }
  .mobile-nav a {
    font-size: 1.08rem;
  }
  .feature-grid > div, .service-cards > div, .service-catalog > div, .features-categories > div {
    min-width: 0;
    padding: 18px 11px 14px 13px;
  }
  .footer-logo img {
    height: 37px;
  }
  .footer-tagline {
    font-size: 0.92rem;
    margin-top: 6px;
  }
  .testimonial-card {
    padding: 14px 11px;
  }
  .avg-rating, .star-ratings { font-size: 1rem; }
  .contact-details {
    gap: 9px;
  }
}
@media (max-width: 540px) {
  .main-nav { gap: 2px; }
  .container { padding-left: 4px; padding-right: 4px; }
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(24,24,24, 0.98);
  color: #fff;
  padding: 28px 20px 24px 20px;
  box-shadow: 0 0 16px 3px rgba(34,34,34,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
  animation: slideUpBanner 0.5s cubic-bezier(.88,.01,.41,1.11);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}
.cookie-btn {
  background: #fff;
  color: #633726;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  padding: 10px 26px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(34,34,34,0.07);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: #633726;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #C03A11;
  border: 1.5px solid #C03A11;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #C03A11;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #633726;
}

/* ==========================
   COOKIE SETTINGS MODAL
   ========================== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24, 0.76);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.36s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232323;
  max-width: 410px;
  width: 94vw;
  border-radius: 12px;
  box-shadow: 0 10px 46px 5px rgba(34,34,34,0.13);
  padding: 34px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popupBounceIn 0.34s cubic-bezier(.74,-0.14,.69,1.47);
}
@keyframes popupBounceIn {
  0% { transform: scale(0.95); opacity: 0; }
  90% { transform: scale(1.035); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.45rem; color: #633726; }
.cookie-modal label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-switch input[type="checkbox"] {
  appearance: none;
  width: 34px;
  height: 19px;
  background: #dbdbdb;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-switch input[type="checkbox"]:checked {
  background: #C03A11;
}
.cookie-switch input[type="checkbox"]:disabled {
  background: #dadada;
  cursor: not-allowed;
}
.cookie-switch input[type="checkbox"]:after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #0004;
  transition: left 0.15s;
}
.cookie-switch input[type="checkbox"]:checked:after {
  left: 17px;
}
.cookie-switch label {
  color: #232323;
  margin: 0;
  font-size: 1rem;
  cursor: pointer;
}

.cookie-modal-footer {
  padding-top: 9px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-footer .cookie-btn {
  min-width: 100px;
}
.cookie-modal-close {
  font-size: 1.6rem;
  color: #633726;
  background: none;
  border: none;
  position: absolute;
  right: 14px;
  top: 12px;
  cursor: pointer;
  transition: background 0.14s;
  border-radius: 4px;
  padding: 4px 12px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f7f7f7;
}

/* ==========================
   MICRO-INTERACTIONS, EFFECTS
   ========================== */
.card, .cta-btn, .service-catalog > div, .feature-grid > div, .testimonial-card, .mobile-menu, .cookie-btn, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.20s cubic-bezier(.45,.05,.58,1),
              background 0.20s,
              color 0.19s,
              border-color 0.18s,
              transform 0.19s;
}
.mobile-menu, .cookie-banner {
  will-change: transform, opacity;
}

/* ==========================
   VISIBILITY HELPERS
   ========================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ==========================
   FLEXBOX ALIGNMENT HELPERS
   ========================== */
.flex-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.flex-column {
  display: flex !important;
  flex-direction: column;
}
.flex-row {
  display: flex !important;
  flex-direction: row;
}
.align-start {
  align-items: flex-start !important;
}
.align-center {
  align-items: center !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-30 {
  gap: 30px !important;
}
.gap-24 {
  gap: 24px !important;
}

/* ==========================
   MONOCHROME DRAMATIC
   (for monochrome_sophisticated effect)
   ========================== */
body {
  background: #fff;
  color: #171717;
}
.hero, .workshops-hero, .home-cta, .offer-cta, .cta-contacts, footer {
  background: #171717;
  color: #fff;
}
.service-card, .feature-grid > div, .features-categories > div, .card, .testimonial-card {
  background: #fff;
  color: #232323;
}
.pricing-highlight, .service-summary {
  background: #f4f4f4;
}
.card, .testimonial-card, .feature-grid > div, .service-catalog > div {
  box-shadow: 0 2px 9px rgba(27,27,27,0.05),0 1.5px 8px rgba(0,0,0,0.03);
}

/* Ensure dramatic contrasts */
h1, h2, h3, h4, h5, h6, strong {
  color: #171717;
}
.hero h1, .hero h2, .workshops-hero h1, .home-cta h2, .offer-cta h2, .cta-contacts h2, footer, footer h1, footer h2, footer h3 {
  color: #fff;
}


/* ==========================
   NO GRID OR COLUMNS USED
   (Flexbox only)
   ========================== */

/* END OF CSS */
