/* -------------------- 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, 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, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F5F6F4;
  color: #264946;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  outline: none;
  border: none;
  background: none;
}

/* -------------------- VARIABLES AND FALLBACKS -------------------- */
:root {
  --primary: #264946;
  --primary-rgb: 38,73,70;
  --secondary: #8BB79B;
  --accent: #F5F6F4;
  --warning: #B9845A;
  --danger: #BB3E25;
  --highlight: #F9E2AF;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', 'Arial', sans-serif;
}

/* -------------------- TYPOGRAPHY (Vintage/Retro Details) -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: 1.5px;
  font-weight: 800;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, span, label, input, a, em, small {
  font-family: var(--font-body);
  color: #264946;
  font-weight: 400;
}
p, ul, ol, label {
  font-size: 1rem;
  margin-bottom: 12px;
}

em,
blockquote {
  font-style: italic;
  color: #8BB79B;
}
strong {
  color: var(--secondary);
  font-weight: 700;
}
small {
  display: block;
  color: #8BB79B;
  font-size: 0.9rem;
}

/* -------------------- RETRO COLOR THEME & DECORATIVE CLASSICS -------------------- */
body {
  background-color: var(--accent);
}
.section, .policy-section, .gdpr-section, .cookies-policy-section, .terms-section, .thank-you-section, .about-our-story, .values-approach, .why-choose-us, .courses-overview, .benefits, .cta-inquiry, .cta-banner, .cta-ready, .cta-subscribe, .contact-hero, .contact-details-section, .contact-benefits, .instructors-hero, .meet-the-team, .teaching-approach, .testimonials-main, .hero, .features, .about-preview, .blog-hero, .latest-articles {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF9E9; /* Aged paper effect */
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(38,73,70,0.10);
  position: relative;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Vintage patterns as lightweight background stripes */
.section::before, .hero::before,[class*='section']::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--highlight), var(--highlight) 20px, transparent 20px, transparent 40px);
  border-radius: 20px 20px 0 0;
  z-index: 1;
  pointer-events: none;
}
.section, .hero, [class*='section'] {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: var(--primary);
  box-shadow: 0 1px 16px rgba(38,73,70,0.13);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 44px;
  margin-right: 16px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  color: #F5F6F4;
  font-size: 1.1rem;
  letter-spacing: 0.8px;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #8BB79B;
  color: var(--primary);
  outline: none;
}
.cta-btn {
  font-family: var(--font-display);
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 32px;
  border-radius: 25px;
  font-size: 1.12rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(38,73,70,0.10);
  margin-left: 24px;
  border: 2.5px solid var(--primary);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .3s, border-color .2s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--highlight);
  color: var(--primary);
  border-color: var(--warning);
  box-shadow: 0 4px 20px rgba(187,132,90,0.10);
}

/* ------------------ MOBILE MENU ------------------ */
.mobile-menu-toggle {
  display: none;
  background: var(--highlight);
  color: var(--primary);
  border-radius: 50%;
  min-width: 44px; min-height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary);
  position: relative;
  z-index: 330;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--warning);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF6DC;
  box-shadow: 0 4px 40px rgba(38,73,70,0.22);
  z-index: 360;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.6,.25,.27,1.18);
  will-change: transform;
  padding: 45px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  color: var(--primary);
  background: var(--highlight);
  border-radius: 50%;
  border: 2px solid var(--secondary);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  z-index: 391;
  cursor: pointer;
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--warning);
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 13px 4px 13px 6px;
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.3rem;
  border-left: 4px solid transparent;
  border-radius: 8px;
  transition: background 0.22s, color 0.18s, border-left-color 0.24s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  border-left-color: var(--warning);
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1024px) {
  header .container nav,
  header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* -------------------- HERO SECTIONS -------------------- */
.hero {
  background-color: #EEDEB3;
  background-image:
    repeating-linear-gradient(45deg, rgba(210,198,166,0.19) 0px, rgba(210,198,166,0.2) 10px, transparent 12px, transparent 22px);
  box-shadow: 0 10px 40px rgba(187,132,90,0.11);
  border: 3.5px dashed var(--warning);
  border-radius: 30px;
  position: relative;
}
.hero h1 {
  color: var(--warning);
}
.hero p {
  color: var(--primary);
  font-size: 1.0625rem;
}

/* -------------------- FEATURES SECTION -------------------- */
.features ul, .courses-overview ul, .benefits ul, .why-choose-us ul, .about-preview ul, .contact-details-section ul, .contact-benefits ul, .core-values ul, .skills-highlights ul, .experience-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 0;
}
.features ul li, .about-preview ul li, .core-values ul li, .why-choose-us ul li, .benefits ul li, .skills-highlights ul li, .experience-highlights ul li, .contact-details-section ul li, .contact-benefits ul li {
  display: flex;
  align-items: center;
  background: #FFECCC;
  gap: 14px;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
  box-shadow: 0 1.5px 5px rgba(187,132,90,0.07);
}
.features ul li img, .about-preview ul li img, .contact-details-section ul li img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
  filter: sepia(.3) brightness(0.92) contrast(1.1);
}

/* -------------------- CARDS & FLEX LAYOUTS -------------------- */
.card-container, .course-list-grid, .article-grid, .feature-benefit-grid, .instructor-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 22px;
}
.card, .testimonial-card, .course-list-grid > div, .article-grid > div, .feature-benefit-grid > div, .instructor-profiles > div {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(137,183,155,0.11);
  padding: 22px 20px 24px 20px;
  margin-bottom: 20px;
  position: relative;
  border: 2.8px solid #DCB692;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.20s, border-color 0.23s, transform .14s;
}
.card:hover, .testimonial-card:hover, .course-list-grid > div:hover, .article-grid > div:hover,
.feature-benefit-grid > div:hover, .instructor-profiles > div:hover {
  box-shadow: 0 6px 30px rgba(137,183,155,0.16);
  border-color: var(--secondary);
  z-index: 2;
  transform: translateY(-3px) scale(1.01);
}

/* Testimonial card (contrast rule enforcement) */
.testimonial-card {
  background: #FFF9E9;
  color: #1F2B21;
  box-shadow: 0 2.5px 10px rgba(38,73,70,0.06);
  border-left: 7px solid var(--secondary);
  margin-bottom: 22px;
  min-width: 280px;
  max-width: 600px;
  font-size: 1.15rem;
  gap: 20px;
  font-family: var(--font-body);
  align-items: flex-start;
}
.testimonial-card span, .testimonial-card small {
  color: var(--warning);
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: var(--primary);
}

/* CTA sections */
.cta-banner, .cta-inquiry, .cta-ready, .cta-subscribe {
  background: #F4E8D2;
  border-radius: 30px;
  text-align: center;
  border: 2.5px solid #DEB884;
  box-shadow: 0 2.5px 15px rgba(38,73,70,0.10);
}
.cta-banner h2, .cta-inquiry h2, .cta-ready h2, .cta-subscribe h2 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 2rem;
}
.cta-banner .cta-btn, .cta-inquiry .cta-btn, .cta-ready .cta-btn, .cta-subscribe .cta-btn {
  margin: 0 auto 12px auto;
  display: inline-block;
  margin-top: 8px;
}

/* Blog search bar */
.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  background: #FFECCC;
  border-radius: 18px;
  padding: 8px 16px;
  box-shadow: 0 1px 4px rgba(137,183,155,0.09);
}
.blog-search input[type="text"] {
  background: none;
  border-bottom: 2px solid var(--warning);
  border-radius: 0;
  padding: 5px 10px;
  font-size: 1rem;
  width: 100%;
  color: var(--primary);
  transition: border-color 0.2s;
}
.blog-search input[type="text"]:focus {
  border-bottom-color: var(--secondary);
}

/* Card grid rules */
.course-list-grid, .feature-benefit-grid, .article-grid, .instructor-profiles {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.course-list-grid > div, .feature-benefit-grid > div, .article-grid > div, .instructor-profiles > div {
  flex: 1 1 300px;
  min-width: 270px;
  max-width: 430px;
}

/* Experience & skills highlights */
.skills-highlights, .experience-highlights {
  margin-top: 16px;
}

/* Cookie Consent Banner and Modal --------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #DEB884;
  color: var(--primary);
  z-index: 499;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  box-shadow: 0 -2px 24px rgba(39,70,38,.18);
  border-top: 3px solid #C39768;
  padding: 18px 32px 22px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.35s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-banner__text {
  flex: 1 1 160px;
  margin-right: 10px;
}
.cookie-banner button {
  margin-left: 10px;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 17px;
  border: 2px solid #AA7B44;
  font-family: var(--font-display);
  background: #fffbe0;
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 1.2px 8px rgba(39,70,38,0.08);
  transition: background .17s, color .18s, border-color .16s;
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: var(--primary);
  color: #FFF;
}
.cookie-banner button.reject {
  background: #FFF3e4;
  color: var(--danger);
  border-color: var(--danger);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: var(--danger);
  color: #FFF;
}
.cookie-banner button.settings {
  background: #FFF9E9;
  color: var(--primary);
  border-color: var(--warning);
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: var(--warning);
  color: var(--primary);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,73,70,0.34);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 500;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF9E9;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 30px rgba(39,70,38,0.23);
  max-width: 430px;
  width: 100%;
  padding: 38px 24px 22px 24px;
  position: relative;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.34s cubic-bezier(.72,0,.37,.99);
}
@keyframes modalIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #DEB884;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 38px; height: 24px;
  background: #F4E8D2;
  border-radius: 13px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  left: 3px; top: 3px;
  transition: left 0.21s;
}
.cookie-toggle input:checked + span {
  left: 17px;
  background: var(--primary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 14px;
  padding: 8px 16px;
  border: 2px solid var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .13s;
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: var(--warning);
  color: var(--primary);
  border-color: var(--warning);
}

/* Decorative (retro corner badge) for highlight text */
.mission, .style-desc {
  background: #FDF3E8;
  border-left: 5px solid var(--warning);
  padding: 13px 13px 13px 24px;
  border-radius: 10px;
  margin-top: 6px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1.04rem;
}

/* Sections with alternating look (vintage alternating stripes) */
.section:nth-of-type(even), .course-list-grid > div:nth-child(even), .feature-benefit-grid > div:nth-child(even), .testimonial-card:nth-child(even) {
  background: #F9F6EC;
}

/* Brand Contact in Footer */
.brand-contact {
  margin-top: 20px;
  font-size: 0.98rem;
  color: #264946;
  border-left: 2.8px solid #DEB884;
  padding-left: 18px;
  font-family: var(--font-body);
}
.brand-contact img {
  height: 19px;
  width: 19px;
  vertical-align: baseline;
  margin-right: 6px;
  filter: sepia(.24) brightness(.88) contrast(1.14);
}

/* Footer */
footer {
  background: var(--secondary);
  margin-top: 48px;
  padding: 28px 0 20px 0;
  box-shadow: 0 -2px 14px rgba(39,70,38,0.05);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  opacity: 0.8;
  transition: text-decoration 0.18s, opacity 0.2s;
}
footer nav a:hover, footer nav a:focus {
  text-decoration: underline;
  opacity: 1;
}

/* -------------------- SPACING & FLEXBOX UTILITIES -------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- TABLET + DESKTOP ADJUSTMENTS -------------------- */
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .cta-btn { font-size: 1.17rem; }
  .card, .testimonial-card, .course-list-grid > div {
    min-width: 330px;
    padding: 28px 25px 30px 25px;
  }
}
@media (min-width: 900px) {
  .content-wrapper {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
  }
  .card-container, .course-list-grid, .article-grid, .feature-benefit-grid, .instructor-profiles {
    flex-direction: row;
    gap: 32px;
    justify-content: flex-start;
  }
}

/* For side-by-side text/image blocks */
@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper, .card-container, .course-list-grid, .article-grid, .feature-benefit-grid, .instructor-profiles {
    flex-direction: column;
    gap: 20px !important;
  }
  .section, .policy-section, .gdpr-section, .cookies-policy-section, .terms-section, .thank-you-section, .about-our-story, .values-approach, .why-choose-us, .courses-overview, .benefits, .cta-inquiry, .cta-banner, .cta-ready, .cta-subscribe, .contact-hero, .contact-details-section, .contact-benefits, .instructors-hero, .meet-the-team, .teaching-approach, .testimonials-main, .hero, .features, .about-preview, .blog-hero, .latest-articles {
    padding: 24px 7px;
    margin-bottom: 34px;
  }
  .brand-contact {
    font-size: 0.95rem;
    margin-top: 15px;
    padding-left: 10px;
  }
  .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8px 20px 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 12px 18px 12px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
}

/* -------------------- UTILITIES -------------------- */
:focus {
  outline: 2.5px dotted var(--warning);
  outline-offset: 2px;
}
[tabindex="0"]:focus, button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px var(--secondary);
}

::-webkit-input-placeholder { color: #C39768; opacity: 1; }
::-moz-placeholder { color: #C39768; opacity:1; }
:-ms-input-placeholder { color: #C39768; opacity:1; }
::placeholder { color: #C39768; opacity:1; }

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* -------------------- ANIMATIONS (MICRO-INTERACTIONS) -------------------- */
.cta-btn, .card, .testimonial-card, .cookie-banner button, .cookie-modal .modal-actions button {
  transition: box-shadow 0.22s, background 0.15s, color 0.15s, border-color 0.18s, transform 0.12s;
}
.cta-btn:active, .card:active, .testimonial-card:active,
.cookie-banner button:active, .cookie-modal .modal-actions button:active {
  box-shadow: 0 0 2px rgba(76,71,52,0.03);
  transform: scale(.97);
}

/* -------------------- PRINT CLEANUP -------------------- */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  body, .container, main { background: #FFF !important; color: #000 !important; }
  .card, .testimonial-card, .section { box-shadow: none !important; border: none !important; background: #FFF !important; }
}
