/* 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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-family: inherit;
  box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8FCFA;
  color: #25465C;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
a {
  color: #3481c6;
  text-decoration: none;
  transition: color 0.24s;
}
a:hover,a:focus {
  color: #25465C;
  text-decoration: underline;
}
ul,ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
li {
  margin-bottom: 10px;
}

/* BRAND FONTS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #25465C;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0px #B3E6D9, 2px 4px 8px #bdd6d240;
  animation: playful-bounce 1.3s cubic-bezier(.19,1,.22,1)3;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  color: #346072;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
strong { font-weight: bold; color: #25465C; }

/* PLAYFUL ANIMATION */
@keyframes playful-bounce {
  15% {transform: translateY(-12px) scale(1.08,0.94);}
  28% {transform: translateY(0) scale(0.97,1.03);}
  40% {transform: translateY(-6px) scale(1.04,0.96);}
  70% {transform: translateY(0) scale(1,1);}
}

/* CONTAINER AND LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* HEADER & NAV */
header {
  background: #BDD6D2;
  border-bottom: 4px solid #F6E9C0;
  position: relative;
  box-shadow: 0 6px 28px #bdd6d23b;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px 18px;
}
.logo img {
  height: 44px;
  min-width: 44px;
  display: block;
  border-radius: 8px 22px 20px 7px/20px 18px 10px 20px;
  box-shadow: 2px 3px 7px #d6ece7b4;
  background: #fff8;
  transition: transform 0.2s;
}
.logo img:hover { transform: rotate(-4deg) scale(1.08); }
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #25465C;
  font-weight: 600;
  background: #fffefc;
  border-radius: 9px 18px;
  padding: 7px 18px 6px 14px;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.28s;
  box-shadow: 0 1px 6px #bdd6d230;
  position: relative;
  z-index: 2;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #25465C;
  font-weight: 700;
  box-shadow: 0 2px 18px #f6e9c060;
}

.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  font-size: 1.1rem;
  background: #F6E9C0;
  color: #25465C;
  font-weight: 700;
  border-radius: 30px 50px 40px 18px/20px 28px 20px 30px;
  border: 2px solid #25465C;
  box-shadow: 0 5px 22px #25465c20;
  letter-spacing: 0.02em;
  margin: 0 6px;
  transition: all 0.19s cubic-bezier(.77,0,.18,1);
  cursor: pointer;
  outline: none;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #25465C;
  color: #F6E9C0;
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 8px 32px #bdd6d278, 0 2px 32px #F6E9C0;
}
.read-more {
  display: inline-block;
  color: #3481c6;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 600;
  border-radius: 14px;
  padding: 7px 20px;
  outline: none;
  border: 2px solid #BDD6D2;
  transition: background 0.22s, color 0.22s, border 0.18s;
}
.read-more:hover, .read-more:focus {
  background: #BDD6D2;
  color: #25465C;
  border: 2px solid #3481c6;
}

/* HERO SECTIONS */
.hero {
  background: #F6E9C0;
  background-image: url('../assets/deco-deich.svg'), linear-gradient(110deg,#BDD6D2 50%,#F6E9C0 100%);
  background-repeat: no-repeat;
  background-position: right bottom, left top;
  background-size: 350px, auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: playful-hero 1.5s cubic-bezier(0.26,0.53,0.74,0.48) 0.1s 1 normal both;
}
@keyframes playful-hero {
  0% { opacity: 0; transform: translateY(44px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  min-width: 240px;
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #25465C;
  text-shadow: 0 2px 10px #bdd6d260;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.25rem;
  color: #346072;
  margin-bottom: 20px;
}

/* SECTION STYLES */
.features-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid {
  margin-top: 12px;
  margin-bottom: 14px;
  align-items: stretch;
}
.feature {
  background: #fff;
  border-radius: 20px 26px 22px 16px/15px 30px 26px 18px;
  box-shadow: 0 2px 16px #bdd6d228;
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.20s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
  filter: drop-shadow(2px 5px 8px #f6e9c050);
  background: #BDD6D2;
  border-radius: 14px 16px 20px 10px;
  box-shadow: 2px 5px 12px #f6e9c030;
}
.feature:hover, .feature:focus {
  transform: translateY(-6px) scale(1.06) rotate(-1.5deg);
  box-shadow: 0 12px 32px #25465c13, 0 2px 22px #bdd6d278;
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px #bdd6d218;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.19s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 18px 18px 22px;
  min-width: 220px;
  position: relative;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px #25465c18, 0 2px 18px #f6e9c060;
}

.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;
}

.text-section {
  background: #fff;
  border-radius: 10px 30px 18px 20px;
  box-shadow: 0 2px 8px #bdd6d218, 0 0px 2px #f6e9c05c;
  padding: 32px 22px 10px 24px;
  margin-bottom: 24px;
}

/* CONTACT & INFO LISTS */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 0 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  color: #25465C;
}
.contact-list img {
  width: 28px;
  height: 28px;
  background: #F6E9C0;
  border-radius: 7px 10px 10px 7px;
  box-shadow: 0 2px 4px #bdd6d216;
  margin-right: 7px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  color: #25465C;
  border-radius: 22px 18px 20px 18px;
  box-shadow: 0 3px 16px #bdd6d218;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  font-size: 1.05rem;
  max-width: 680px;
  position: relative;
}
.testimonial-card blockquote {
  quotes: "\201C" "\201D";
  font-size: 1.14rem;
  color: #25465C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  margin: 0 8px 0 0;
}
.testimonial-card figcaption {
  color: #7bb3a8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  margin-left: 14px;
}

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

/* CTA SECTION */
.cta {
  width: 100%;
  background: #BDD6D2;
  border-radius: 0 0 60px 60px/0 0 100px 60px;
  box-shadow: 0 2px 22px #bdd6d218;
  padding: 40px 20px 32px 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .cta-button {
  font-size: 1.2rem;
  box-shadow: 0 8px 32px #BDD6D2, 0 2px 26px #F6E9C0;
}

/* FOOTER */
footer {
  background: #25465C;
  color: #F6E9C0;
  padding: 32px 0 18px 0;
  border-radius: 60px 60px 0 0/100px 60px 0 0;
  box-shadow: 0 -8px 32px #25465c28;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 7px;
  margin-top: 4px;
  margin-left: auto;
  margin-right: auto;
}
footer nav a {
  color: #F6E9C0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
footer nav a:hover, footer nav a:focus {
  background: #F6E9C0;
  color: #25465C;
}
.footer-contact {
  font-size: 0.96rem;
  color: #E4B237;
  margin-top: 2px;
  text-align: center;
  line-height: 1.8;
}

footer img {
  height: 38px;
  border-radius: 15px 38px 20px 11px;
  margin-bottom: 5px;
  box-shadow: 0 4px 10px #fff6e960;
  background: #F6E9C0;
}

/* MOBILE MENU & NAVIGATION */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

@media (max-width: 1020px) {
  .features-grid,.content-grid,.card-container {
    justify-content: flex-start;
  }
  .feature, .card {
    flex: 1 1 228px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  /* Burger menu shown */
  .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 26px;
    top: 22px;
    z-index: 300;
    background: #F6E9C0;
    color: #25465C;
    border: none;
    font-size: 2.1rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 7px #bdd6d231;
    cursor: pointer;
    transition: background .14s, box-shadow .2s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #25465C;
    color: #F6E9C0;
    box-shadow: 0 2px 18px #FFF2BB;
  }
  header .container > nav, header .cta-button {
    display: none;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #BDD6D2;
    z-index: 998;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.29s cubic-bezier(.77,0,.18,1), opacity 0.19s;
    box-shadow: -2px 0 22px #25465c1e;
    padding: 0 0 0 0;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.29s cubic-bezier(.77,0,.18,1), opacity 0.19s;
  }
  .mobile-menu-close {
    margin: 28px 22px 4px auto;
    align-self: flex-end;
    background: #F6E9C0;
    color: #25465C;
    border: none;
    font-size: 2.2rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background .17s, color .17s;
    cursor: pointer;
    box-shadow: 1px 1px 7px #bdd6d231;
    z-index: 1002;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #25465C;
    color: #F6E9C0;
  }
  .mobile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 32px;
    font-size: 1.38rem;
    margin-top: 14px;
  }
  .mobile-nav a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 14px 6px 14px 22px;
    border-radius: 16px 18px 10px 14px;
    color: #25465C;
    background: #F6E9C0;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: background .18s, color .18s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #25465C;
    color: #F6E9C0;
  }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 920px) {
  .header .container { flex-direction: row; gap: 10px; }
  .features-grid, .card-container, .content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero .container {
    min-height: 210px;
  }
  .hero {
    min-height: 180px;
    padding: 18px 4px 24px 4px;
    background-position: right bottom, left top;
    background-size: 170px, cover;
  }
  .features-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .section, .cta {
    padding: 28px 5px;
    margin-bottom: 38px;
  }
  .card, .feature {
    min-width: 0;
    max-width: 100%;
    padding: 20px 12px 14px 12px;
  }
  .text-section {
    padding: 22px 10px 5px 14px;
  }
  .testimonial-card {
    padding: 14px 8px;
    font-size: 0.99rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}

/* FLOATY DECO ANIMATION for fun */
@keyframes floaty {
  0%{transform:translateY(0)} 50%{transform:translateY(-9px) scale(1.01,0.97)} 100%{transform:translateY(0)}
}
.feature img, .logo img, .cta-button {
  animation: floaty 3s ease-in-out infinite alternate;
}

/* FUN MICRO-INTERACTIONS */
.card:hover:after, .feature:hover:after {
  content: '🪶';
  position: absolute;
  top: 6px; right: 18px;
  font-size: 1.66rem;
  pointer-events: none;
  opacity: 0.23;
  animation: spinpop .9s;
}
@keyframes spinpop {
  0%{transform:scale(0.4) rotate(-51deg);opacity:.1}
  65%{transform:scale(1.34) rotate(30deg);opacity:.32}
  100%{transform:scale(1) rotate(0);opacity:.23}
}

/* COOKIE BANNER (fixed bottom) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdf8;
  color: #25465C;
  border-top: 4px solid #BDD6D2;
  box-shadow: 0 -4px 24px #25465c23;
  z-index: 9999;
  padding: 26px 16px 26px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.05rem;
  animation: pop-in .6s;
}
.cookie-banner__text {
  max-width: 700px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin-bottom: 12px;
}
@keyframes pop-in {
  from{transform:translateY(60px);opacity:0} to{transform:translateY(0);opacity:1}
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button, .cookie-banner__settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 14px 22px 17px 10px;
  margin: 0 3px;
  cursor: pointer;
  background: #F6E9C0;
  color: #25465C;
  font-weight: 700;
  transition: background .17s, color .17s, box-shadow .3s;
  box-shadow: 0 1px 7px #f6e9c032;
}
.cookie-banner button.accept {
  background: #BDD6D2;
  color: #25465C;
}
.cookie-banner button.reject {
  background: #F6E9C0;
  color: #25465C;
}
.cookie-banner button.settings, .cookie-banner__settings-btn {
  background: #25465C;
  color: #F6E9C0;
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: #25465C;
  color: #F6E9C0;
  box-shadow: 0 4px 16px #BDD6D2, 0 2px 16px #F6E9C0;
}

/* COOKIE CONSENT Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10003;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #25465c6a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  opacity: 1; visibility: visible;
}
.cookie-modal {
  background: #fff;
  color: #25465C;
  border-radius: 23px 40px 22px 18px;
  min-width: 310px;
  max-width: 94vw;
  box-shadow: 0 4px 38px #25465c53;
  padding: 38px 20px 24px 32px;
  position: relative;
  animation: pop-in-modal .7s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes pop-in-modal {
  0% { transform: scale(0.88) translateY(40px); opacity: 0; } 100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: #25465C;
  margin-bottom: 7px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.cookie-switch {
  width: 38px;
  height: 20px;
  background: #BDD6D2;
  border-radius: 13px;
  position: relative;
  margin-right: 8px;
  transition: background 0.14s;
}
.cookie-switch:after {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  left: 1px; top: 1px;
  border-radius: 50%;
  background: #F6E9C0;
  box-shadow: 0 1px 6px #BDD6D2;
  transition: left .16s;
}
input[type="checkbox"]:checked + .cookie-switch {
  background: #25465C;
}
input[type="checkbox"]:checked + .cookie-switch:after {
  left: 19px;
  background: #BDD6D2;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px; right: 14px;
  background: #F6E9C0;
  color: #25465C;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: background .15s, color .15s;
  z-index: 6;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #25465C;
  color: #F6E9C0;
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.99rem;
    padding: 18px 7px 18px 7px;
  }
  .cookie-banner__actions {
    flex-direction: row;
    gap: 8px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 3px 14px 8px;
  }
}
 
/* MISC SPACING */
.section, .card, .feature, .card-container, .feature-item, .testimonial-card, .content-grid, .text-image-section {
  margin-bottom: 20px;
}
/* Specific spacing rules as explicitly required */
.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;
}

/* FORMS PREVIEW (Kontakt) */
.form-preview {
  background: #fff;
  border-radius: 14px 26px 20px 17px;
  box-shadow: 0 2px 7px #bdd6d212, 0 0 1px #25465c08;
  padding: 20px 14px 14px 18px;
  margin-top: 17px;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px dotted #3481c6 !important;
  outline-offset: 2px;
}
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::placeholder {
  color: #BDD6D2;
  opacity: .9;
  font-style: italic;
}

/* SCROLLBAR STYLE for fun */
::-webkit-scrollbar {
  width: 10px;
  background: #F6E9C0;
}
::-webkit-scrollbar-thumb {
  background: #BDD6D2;
  border-radius: 12px;
}

/* NOSCRIPT fallback (optional) */
.noscript-warning {
  background: #fff6e9;
  color: #b14b00;
  padding: 15px;
  border-radius: 9px;
  margin: 18px 0;
  font-size: 1.15rem;
  border-left: 5px solid #F6E9C0;
}
