/* --------------------------------------------------------
  CSS RESET & BASELINE NORMALIZATION
-------------------------------------------------------- */
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;
}
html { box-sizing: border-box; }
*,*:before,*:after { box-sizing: inherit; }
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height:1.7;
  background: #262933;
  color: #f3f3f3;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ull,ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #F6D2B0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #fff;
  text-decoration: underline;
}
img,svg {
  max-width: 100%;
  vertical-align: middle;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

/* --------------------------------------------------------
  BRAND FONTS & TYPOGRAPHY
-------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: local('Cormorant Garamond'), local('CormorantGaramond-Bold'), url(https://fonts.googleapis.com/css?family=Cormorant+Garamond:700&display=swap);
}
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow:0 2px 8px rgba(19,20,22,0.16);
}
h1 { font-size: 2.4rem; line-height: 1.1; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4, h5, h6 { font-size: 1.1rem; }
p,li,blockquote { font-family: 'Roboto', Arial, Helvetica, sans-serif; font-size: 1rem; color: #f3f3f3;}
b,strong { font-weight: 700; }
blockquote {
  font-family: 'Cormorant Garamond', serif;
  background: #f6f6f4;
  color: #23252C;
  border-left: 4px solid #F6D2B0;
  padding: 20px 30px 14px 18px;
  margin-bottom: 24px;
  border-radius: 7px;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
}
blockquote footer { font-size: 0.95em; color: #374164; margin-top: 10px; }

/* --------------------------------------------------------
  LAYOUT CONTAINERS, SECTIONS & FLEXBOX PATTERNS
-------------------------------------------------------- */
main {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
  margin: 0 auto;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(45, 49, 62, 0.94);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(17,18,19,0.11);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 270px;
  justify-content: center;
  background: linear-gradient(120deg, #23252C 0%, #32364A 90%);
  box-shadow: 0 2px 20px rgba(20,22,27,0.18);
  margin-bottom: 48px;
  border-radius: 14px;
  padding: 60px 24px 50px 24px;
}
.hero h1 { color: #F6D2B0; text-shadow:0 4px 32px #26293380; }
.hero p { color: #A3B9D2; font-size: 1.13rem; margin: 8px 0 24px 0; }

.features, .features ul, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features ul, .feature-grid { padding: 0; margin-top: 28px; }
.features li, .feature-grid li {
  background: rgba(44,48,66,0.97);
  border: 1.5px solid #374164;
  border-radius: 12px;
  box-shadow:0 2px 12px 0 rgba(22,24,30,0.10);
  flex:1 1 230px; min-width:220px; max-width: 370px;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  transition:box-shadow 0.23s,transform 0.17s;
}
.features li:focus-within, .features li:hover,
.feature-grid li:focus-within, .feature-grid li:hover {
  box-shadow: 0 6px 32px 0 #37416455, 0 1.5px 0 #A3B9D2cc;
  transform: translateY(-3px) scale(1.012);
  border-color: #A3B9D2;
  z-index:5;
}
.features li .icon { display: flex; align-items: center; margin-bottom: 6px; }
.features strong { color: #F6D2B0; font-size: 1.1rem; }
.features p { color: #A3B9D2; font-size: 1em; line-height:1.5; }

/* Alignment rules for flex containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23252c;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  box-shadow:0 3px 20px 0 rgba(51,54,72,0.14);
}
.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;
  background: #f3f3f3;
  color: #262933;
  border-left: 5px solid #F6D2B0;
  border-radius: 9px;
  box-shadow:0 2px 14px 0 #23252c11;
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card blockquote { color:#23252C;background: none;border:none;padding:0;margin:0;box-shadow:none; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.about-short {
  background: #23252C;
}
.about-short ul.trust-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  color: #A3B9D2;
  font-weight: 500;
  font-size: 1em;
}

.kontakt-teaser {
  background: #262933;
  color:#f3f3f3;
}
.kontakt-teaser a.secondary-cta {
  color: #F6D2B0;
  border-color: #A3B9D2;
  background: #23252C;
}
.kontakt-teaser a.secondary-cta:hover {
  background: #A3B9D2;
  color: #23252C;
  border-color: #F6D2B0;
}

.service-detail ul, .lunar-features ul, .contact ul {
  margin: 16px 0px 16px 18px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal {
  background: #23252C;
  color: #A3B9D2;
}
.legal h1, .legal h2 { color: #F6D2B0; }
.legal a { color: #A3B9D2; text-decoration: underline; }
.legal ol {margin-bottom:20px;padding-left:22px;}
.legal li {margin-bottom:8px;list-style-type:decimal;color:#A3B9D2;}

/* Cards & Reviews Pattern */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size:1em;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size:1.06em;
  color:#F6D2B0;
  margin-top:10px;
}

.testimonials {
  background: #23252C;
  border-radius: 13px;
  box-shadow:0 1px 18px 0 #23252c12;
  padding: 40px 20px;
  margin-bottom: 60px;
  color: #23252C;
}
.testimonials h2 { color: #F6D2B0; }

.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonials blockquote {
  background:#fff;
  color:#231e1a;
  border-left: 5px solid #F6D2B0;
  box-shadow:0 1px 12px 0 #A3B9D240;
}
.testimonials footer { color:#374164; }

/* Map Placeholder */
.map-placeholder {
  background: #A3B9D2;
  border-radius: 10px;
  margin-top: 18px;
  margin-bottom: 8px;
  min-width: 210px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.map-placeholder svg { display: block; }
.map-caption {
  font-family: 'Roboto', Arial, sans-serif;
  color:#374164;
  font-size: 0.98em;
  text-align:center;
  margin-top: -24px;
  padding-bottom:10px;
}

.form-hint { color: #A3B9D2; font-size: 1em; margin:14px 0 0 0; }

/* --------------------------------------------------------
  BUTTONS, LINKS & CTA ELEMENTS
-------------------------------------------------------- */
.primary-cta, .secondary-cta, .cta a.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: 2px solid #F6D2B0;
  transition: background 0.22s, color 0.22s, border 0.22s, transform 0.15s, box-shadow 0.2s;
  color: #23252C;
  background: #F6D2B0;
  box-shadow: 0 2px 8px rgba(246,210,176,0.08);
  cursor:pointer;
  padding: 15px 32px;
  margin-top: 15px;
  margin-bottom:8px;
  text-shadow:0 0.5px 3px #88705212;
}
.primary-cta:focus,
.primary-cta:hover {
  background: #374164;
  color: #F6D2B0;
  border-color: #A3B9D2;
  transform: translateY(-2px) scale(1.02);
  box-shadow:0 4px 22px #23252c45;
  text-decoration:none;
  outline:none;
}
.secondary-cta {
  border: 2px solid #A3B9D2;
  color: #A3B9D2;
  background: transparent;
  padding: 12px 26px;
  font-size:1.07rem;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #A3B9D2; color: #23252C; border-color: #F6D2B0;
}
.button, .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius:7px;
  border:1.8px solid #A3B9D2;
  background: #374164;
  color: #fff;
  font-weight:600;
  padding: 11px 24px;
  font-size: 1rem;
  cursor:pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.15s, box-shadow 0.2s;
}
.button:hover,.btn:hover, .button:focus,.btn:focus {
  background: #A3B9D2;
  color: #23252C;
  border-color: #F6D2B0;
  transform: scale(1.04);
  box-shadow:0 2px 14px #A3B9D255;
  outline:none;
}
a.primary-cta,a.secondary-cta { text-decoration:none; }

/* --------------------------------------------------------
  HEADER, NAVIGATION & BRANDING (Desktop)
-------------------------------------------------------- */
header {
  background: #23252C;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow:0 2px 18px 0 #23252c18;
  padding: 10px 0 0 0;
}
.branding {
  display: flex;
  align-items: center;
  padding: 0 24px 0 24px;
  gap: 13px;
  justify-content: center;
}
a.primary-cta {
  color: #23252C !important;
}
.logo-svg svg {
  display: inline-block;
  width:32px; height:32px;
  background: linear-gradient(90deg,#23252C 80%,#374164 100%);
  border-radius: 100%;
  box-shadow: 0 1.5px 7px #37416429;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F6D2B0;
  text-shadow: 0 1.5px 4px #37416435;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
  font-family: 'Roboto', Arial,sans-serif;
  font-size:1.05rem;
  margin: 6px auto 0 auto;
  justify-content: center;
}
.main-nav a {
  color: #A3B9D2;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.22s;
}
.main-nav a.primary-cta {
  margin-left: 26px;
}
.main-nav a:hover,.main-nav a:focus {
  background: #A3B9D2;
  color: #23252C;
  font-weight:700;
}

/* --------------------------------------------------------
  MOBILE BURGER MENU & RESPONSIVE NAV
-------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #23252C;
  color: #F6D2B0;
  border-radius:6px;
  font-size: 2.1rem;
  padding: 8px 16px;
  margin: 0 18px 8px auto;
  position: relative;
  z-index: 1101;
  transition: background 0.15s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A3B9D2;
  color: #23252C;
  box-shadow:0 2px 8px #A3B9D244;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #23252ce6;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.4,1.5,0.7,1.01), opacity 0.23s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F6D2B0;
  font-size: 2rem;
  padding: 20px;
  margin-left: auto;
  z-index: 1300;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 16px 28px 0 32px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #A3B9D2;
  background: none;
  font-size: 1.17rem;
  padding: 11px 0;
  border-bottom: 1.5px solid #374164;
  width: 100%;
  border-radius: 0px;
  font-weight: 600;
  transition:color 0.19s,background 0.17s;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  color: #F6D2B0;
}

/* Show/hide main nav and mobile burger toggle responsively */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* --------------------------------------------------------
  FOOTER
-------------------------------------------------------- */
footer {
  background: #23252C;
  color: #F6D2B0;
  padding: 40px 22px 18px 22px;
  border-radius: 18px 18px 0 0;
  box-shadow:0 -2px 22px 0 #37416418;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #A3B9D2;
  font-size: 1rem;
  padding: 7px 5px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover { color: #F6D2B0; background: #374164; }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 0px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  color: #F6D2B0;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-social a {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.11s;
  color: #A3B9D2;
}
.footer-social a:hover { color: #F6D2B0; transform: scale(1.11); }
.footer-social svg { stroke: #A3B9D2; }

/* --------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
-------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23252C;
  color: #F6D2B0;
  padding: 24px 16px 17px 22px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow:0 -3px 20px #23252c55;
  min-height: 94px;
  border-radius: 16px 16px 0 0;
  animation: fadeInBottom 0.5s cubic-bezier(.2,1.2,.6,1);
  gap: 14px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top:8px;
}
.cookie-banner__accept, .cookie-banner__reject, .cookie-banner__settings {
  font-family: 'Roboto', Arial, sans-serif;
  font-size:1rem;
  font-weight:600;
  border-radius: 7px;
  border: 2px solid #A3B9D2;
  background: #374164;
  color: #F6D2B0;
  padding: 10px 25px;
  margin: 0 6px 6px 0;
  transition: background 0.17s, color 0.18s, border 0.17s, transform 0.13s;
}
.cookie-banner__accept:hover, .cookie-banner__accept:focus {
  background: #F6D2B0;
  color: #262933;
  border-color: #374164;
}
.cookie-banner__reject:hover, .cookie-banner__reject:focus {
  background: #23252C;
  color: #A3B9D2;
  border-color: #F6D2B0;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #A3B9D2;
  color: #23252C;
  border-color: #F6D2B0;
}
@keyframes fadeInBottom {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}

/* Cookie preference modal */
.cookie-modal {
  position:fixed;
  left:0;top:0;right:0;bottom:0;
  background: rgba(35,37,44,0.92);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.29s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__panel {
  background: #F6D2B0;
  color: #23252C;
  padding: 45px 34px 30px 34px;
  border-radius: 15px;
  min-width: 300px;
  min-height: 220px;
  max-width: 500px;
  box-shadow:0 8px 44px #37416445,0 2px 8px #A3B9D266;
  position:relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInModal 0.35s cubic-bezier(.2,1.2,.5,1);
}
@keyframes fadeInModal {
  from { transform:translateY(40px) scale(0.95); opacity:0; }
  to   { transform:translateY(0) scale(1); opacity:1; }
}
.cookie-modal__close {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #23252C;
  background: none;
  font-size:1.7rem;
  padding: 3px 5px;
  border-radius:4px;
  transition: background 0.13s;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: #A3B9D2;
  color: #374164;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.cookie-category__label {
  font-weight: 600;
  min-width: 110px;
}
.cookie-category__toggle {
  appearance: none;
  width: 38px; height: 20px;
  border-radius: 24px;
  background: #A3B9D2;
  transition: background 0.18s;
  position: relative;
  outline: none;
  cursor:pointer;
}
.cookie-category__toggle:checked {
  background: #374164;
}
.cookie-category__toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.23s, background 0.2s;
  box-shadow: 0 1px 2px #0001;
}
.cookie-category__toggle:checked::before {
  left: 19px;
  background: #F6D2B0;
}
.cookie-category__description {
  font-size: 0.98em;
  color: #374164;
  margin-top:2px;
}
.cookie-category__toggle[disabled], .cookie-category__toggle:disabled {
  cursor:not-allowed;
  opacity:0.6;
}
.cookie-modal__save {
  margin-top: 15px;
  padding: 10px 30px;
  background: #374164;
  color: #F6D2B0;
  border: 2px solid #A3B9D2;
  border-radius: 7px;
  font-size:1.1rem;
  font-weight:700;
  align-self: flex-end;
  cursor:pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal__save:hover, .cookie-modal__save:focus {
  background: #A3B9D2;
  color: #23252C;
  border-color: #F6D2B0;
}

/* --------------------------------------------------------
  RESPONSIVE LAYOUT / BREAKPOINTS
-------------------------------------------------------- */
@media (max-width: 1100px) {
  .features .feature-grid, .features ul {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .footer-nav, .main-nav { gap: 10px; }
  section, .section, .hero { padding-left:13px; padding-right:13px; }
}
@media (max-width: 768px) {
  .hero, section, .section { padding: 32px 6vw; }
  .features ul, .features .feature-grid, .content-grid { flex-direction: column; gap:20px; }
  .card-container { flex-direction: column; gap:16px; }
  .footer-meta, .about-short ul.trust-factors, .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size:1em;
  }
  .text-image-section { flex-direction: column; gap:18px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width:500px) {
  h1 { font-size:1.37rem; }
  h2 { font-size:1.1rem; }
  .primary-cta,.secondary-cta { font-size:1em; padding:11px 14px; }
  section,.section,.hero { padding:20px 2vw 25px 2vw; }
}

/* --------------------------------------------------------
  UTILITY CLASSES & HELPER STYLES
-------------------------------------------------------- */
.hide { display: none !important; }
.text-center { text-align:center; }
.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }
.align-center { align-items:center; }
.align-start { align-items:flex-start; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-12 { margin-top:12px; }
.mb-12 { margin-bottom: 12px; }

/* --------------------------------------------------------
  SCROLLBAR, SELECTION, MICRO-INTERACTIONS
-------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px; background: #23252C;
}
::-webkit-scrollbar-thumb {
  background: #37416499; border-radius: 9px;
}
::selection { background: #F6D2B0; color: #23252C; }

/* Hoverable icons and card micro-interaction */
svg, .icon { transition: filter 0.12s, transform 0.18s; }
.icon:hover, .icon:focus, svg:hover {
  filter: drop-shadow(0 2px 10px #F6D2B035);
  transform: scale(1.07) rotate(-3deg);
}

/* --------------------------------------------------------
  INDUSTRIAL MODERN: METALLIC ACCENT BORDER & EFFECTS
-------------------------------------------------------- */
.features li, .features li .icon svg, .card {
  border: 1.5px solid #939baa88 !important;
}
.features li .icon svg, .footer-social svg, .logo-svg svg {
  filter: drop-shadow(0 0.5px 8px #A3B9D255);
}

/* --------------------------------------------------------
  CLEAR VISUAL HIERARCHY & CONTRAST FOR TESTIMONIALS
-------------------------------------------------------- */
.testimonials, .testimonials blockquote, .testimonial-card {
  color: #23252C;
  background: #fefefc7c;
}
.testimonials h2, .testimonial-card strong { color: #F6D2B0; }
.testimonials footer, .testimonial-card footer { color: #F6D2B0; }
