/* ========= CSS RESET & BASE ========== */
html { box-sizing: border-box; font-size: 100%; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #17262b;
  background-color: #FAFFFC;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; border: none; }
a { color: #1C6B47; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus { color: #FFD85B; outline: none; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 10px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #1C6B47;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
strong, b { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 700; color: #243c32; }
p { margin-bottom: 14px; }

/* ============= COLORS (BRAND & STYLE) ============= */
:root {
  --color-primary: #1C6B47;
  --color-primary-dark: #134c33;
  --color-secondary: #E4F6E5;
  --color-accent: #FFD85B;
  --color-electric-green: #17e273;
  --color-electric-blue: #07bfff;
  --color-bold-pink: #ff41a1;
  --color-bg: #FAFFFC;
  --color-light: #fff;
  --color-dark: #17262b;
  --color-shadow: rgba(28,107,71,0.07);
  --color-muted: #a3b6ad;
  --color-error: #ff2455;
}

/* ========== CONTAINER & LAYOUTS ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 3px 18px var(--color-shadow);
  padding: 24px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: transform 0.22s cubic-bezier(.7,.4,.16,.99), box-shadow 0.17s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 28px rgba(7,191,255,0.08);
  transform: translateY(-3px) scale(1.03);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,216,91,0.14);
  margin-bottom: 20px;
  min-width: 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-secondary);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 1px 8px var(--color-shadow);
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--color-light);
  border-bottom: 1.5px solid #defbee;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  box-shadow: 0 0.5px 0 rgba(37,128,83,0.04);
  min-height: 72px;
}
.logo {
  height: 54px; width: auto;
  margin-right: 30px;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-right: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.25s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: var(--color-accent);
  color: var(--color-dark);
}
.button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,219,142,0.13);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.16s;
}
.button-primary {
  background: linear-gradient(90deg, #1C6B47 46%, #17e273 100%);
  color: #fff;
  box-shadow: 0 3px 14px rgba(23,226,115,0.16);
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #07bfff 32%, #FFD85B 95%);
  color: #1C6B47;
  transform: scale(1.035);
}
.button-secondary {
  background: #FFD85B;
  color: #1C6B47;
}
.button-secondary:hover, .button-secondary:focus {
  background: #1C6B47;
  color: #FFD85B;
  transform: scale(1.03);
}

/* ========== BURGER/MOBILE NAV ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px; top: 15px;
  z-index: 120;
  box-shadow: 0 2px 9px rgba(255,216,91,0.14);
  cursor: pointer;
  transition: background .18s, color .18s, transform .13s;
}
.mobile-menu-toggle:active {
  background: var(--color-electric-blue);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--color-light);
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 150;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.71,.21,.5,1.11);
  box-shadow: 0 0 40px 10px rgba(0,0,0,0.10);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-size: 2.4rem;
  position: absolute;
  right: 24px;
  top: 19px;
  cursor: pointer;
  z-index: 200;
}
.mobile-nav {
  margin: 80px 0 0 0;
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #243c32;
  padding: 16px 40px;
  border-radius: 14px;
  background: transparent;
  width: 70vw;
  text-align: center;
  letter-spacing: 0.07em;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD85B;
  color: var(--color-primary);
}

/* ========== HERO/BANNER =========== */
.hero {
  background: linear-gradient(92deg,#E4F6E5 60%, #FFD85B 120%);
  min-height: 280px;
  padding: 60px 0 50px 0;
  display: flex;
  align-items: center;
}
.hero .container { align-items: stretch; }
.hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.14;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px #FFD85B22;
}
.hero p {
  font-size: 1.25rem;
  color: #243c32;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ========== CTA SECTION ========== */
.cta {
  background: var(--color-accent);
  margin-bottom: 0;
  padding: 48px 16px 64px 16px;
}
.cta .container, .cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta p {
  color: #243c32;
  font-size: 1.125rem;
  margin-bottom: 28px;
  font-weight: 500;
}

/* ========== FEATURES ============= */
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  list-style: none;
  margin: 22px 0 0 0;
  padding: 0;
}
.features li {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 18px 18px 18px 16px;
  font-size: 1.05rem;
  min-width: 200px;
  flex: 1 1 222px;
  align-items: center;
  display: flex;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.17s;
}
.features li img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
}

/* ========== SERVICES ============= */
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  list-style: none;
  margin-top: 28px;
}
.services ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 24px 18px 21px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  font-size: 1rem;
  color: #243c32;
  display: flex;
  gap: 14px;
  flex-direction: column;
  margin-bottom: 15px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.services ul li img {
  width: 32px; height: 32px; margin-bottom: 10px;
}
.services ul li b {
  display: block;
  font-weight: 900;
  color: var(--color-primary);
  font-size: 1.13rem;
  margin-bottom: 2px;
}
.services ul li span {
  font-weight: 800;
  color: var(--color-bold-pink);
  background: var(--color-secondary);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 1rem;
  position: relative;
  top: 3px;
}
.services ul li a {
  font-weight: 700;
  color: var(--color-electric-blue);
  text-decoration: underline;
  margin-top: 4px;
}
.services ul li a:hover, .services ul li a:focus {
  color: var(--color-primary);
  text-decoration: none;
}
.angebot-liste {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.angebot-liste .text-section {
  background: var(--color-secondary);
  box-shadow: 0 1px 10px var(--color-shadow);
  border-radius: 10px;
  padding: 22px 20px 16px 18px;
}
.angebot-liste h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 13px;
  font-size: 1.18rem;
}
.angebot-liste h3 span {
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-electric-green);
  margin-left: 8px;
}

/* ========== TESTIMONIALS ========== */
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  background: #fffbe9;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(255,216,91,0.14);
  margin-bottom: 20px;
  padding: 20px 24px;
  color: #1C1B1A;
  font-size: 1.12rem;
}
.testimonial-card p {
  flex: 1 1 220px;
  font-size: 1.07rem;
  color: var(--color-dark);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.testimonial-card strong, .testimonial-card b {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.08rem;
}
.testimonial-card img {
  width: 26px;
  height: 26px;
  margin-right: 2px;
  display: inline-block;
  vertical-align: middle;
}

/* ========== BLOG ========== */
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.blog-list li {
  background: var(--color-secondary);
  border-left: 9px solid var(--color-electric-blue);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 1.13rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-list .category {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 2px 11px;
  font-weight: 800;
  margin-left: 12px;
  margin-top: 6px;
}
.search-bar {
  margin-top: 18px;
  display: flex;
  width: 100%;
  flex-direction: row;
}
.search-bar input {
  flex: 1 1 200px;
  border-radius: 24px;
  border: 2px solid var(--color-primary);
  padding: 10px 18px;
  font-size: 1.05rem;
  outline: none;
  background: #fff;
  margin-right: 12px;
  transition: border 0.17s;
}
.search-bar input:focus {
  border: 2px solid var(--color-electric-blue);
  box-shadow: 0 3px 8px #07bfff33;
}

/* ========== TEXT SECTIONS ========== */
.text-section {
  background: var(--color-light);
  padding: 16px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.text-section img {
  vertical-align: middle;
  width: 22px; height: 22px;
  margin-right: 8px;
}
.text-section ul {
  margin-top: 9px;
  margin-bottom: 9px;
  gap: 10px;
}
.text-section li {
  font-size: 1rem;
  color: var(--color-primary);
  padding-left: 4px;
}

/* ========== LEGAL PAGES ========== */
.legal {
  background: #f4fffa;
  border-radius: 15px;
  margin-bottom: 40px;
}
.legal .text-section {
  background: transparent;
  padding-left: 0;
}
.legal h1 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.legal h2 {
  font-size: 1.18rem;
  color: var(--color-bold-pink);
}

/* ========== FOOTER ========== */
footer {
  background: #1C6B47;
  color: #fff;
  padding: 36px 0 32px 0;
  font-size: 1rem;
  margin-top: 56px;
}
footer .container {
  gap: 16px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 21px;
  margin-bottom: 14px;
}
.footer-links a {
  color: #FFD85B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  color: #e3f6ea;
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-contact img {
  width: 26px; height: 26px; margin-right: 4px;
  vertical-align: middle;
}
.footer-contact a {
  color: #FFD85B;
  font-weight: 700;
  margin-right: 6px;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #effffd;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.footer-social span {
  margin-right: 4px;
  color: #FFD85B;
  font-weight: 800;
}
.footer-social img {
  width: 22px; height: 22px;
  transition: filter 0.18s, transform 0.15s;
  filter: brightness(0) invert(1) sepia(0.18) saturate(3) hue-rotate(70deg) drop-shadow(0 2px 5px #FFD85B66);
}
.footer-social img:hover, .footer-social img:focus {
  filter: none;
  transform: scale(1.13) rotate(-7deg);
}

/* ========== SPACING & FLEX GAPS ========== */
.section + .section { margin-top: 0; }
main .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========== RESPONSIVE DESIGN (MOBILE FIRST) ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 12px;
    max-width: 98vw;
  }
  .hero h1 { font-size: 2.05rem; }
  .cta h2 { font-size: 1.45rem; }
}
@media (max-width: 768px) {
  /* burger menu visible, nav hidden */
  header > .container nav,
  header > .container .button-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 7px;
    max-width: 100vw;
  }
  .hero, .cta {
    padding: 34px 0 27px 0;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.38rem;
    line-height: 1.18;
  }
  .cta .container, .cta .content-wrapper {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  .features ul, .features ol {
    flex-direction: column;
    gap: 17px;
  }
  .services ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container,.content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .section, main .section {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px;
    font-size: 1rem;
  }
  .footer-links, .footer-contact, .footer-social {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    margin-bottom: 7px;
  }
  footer .container { gap: 8px; }
}
@media (max-width: 450px) {
  .logo {
    height: 43px;
  }
  .testimonial-card {
    font-size: 0.97rem;
    padding: 7px 3px;
  }
}

/* ========== MICRO-INTERACTIONS =========== */
.button, .button-primary, .button-secondary, .services ul li, .features li, .card, .testimonial-card, .blog-list li {
  transition: box-shadow 0.17s, background 0.18s, color 0.17s, transform 0.13s;
}
.services ul li:hover, .features li:hover, .blog-list li:hover {
  box-shadow: 0 3px 14px #FFD85B44, 0 2px 0 #07bfff22;
  background: #e4fff9;
  transform: translateY(-3px) scale(1.025);
}

/* === Scrollbar styles for vibrancy === */
::-webkit-scrollbar { width: 9px; background: #E4F6E5; }
::-webkit-scrollbar-thumb { background: #07bfff; border-radius: 9px; }

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: linear-gradient(90deg, #FFD85B 55%, #E4F6E5 100%);
  color: #183325;
  z-index: 9000;
  padding: 24px 17px 18px 24px;
  box-shadow: 0 -7px 26px #ffd85b33;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 1.08rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: slideBannerIn .7s cubic-bezier(.32,1.29,.6,1) 1;
}
.cookie-banner.hide {
  display: none !important;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 23px;
  padding: 9px 26px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.15s, color 0.15s, transform 0.11s;
}
.cookie-banner .cookie-reject {
  background: #ff41a1;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.05);
}

@keyframes slideBannerIn {
  from { 
    transform: translateY(100%); opacity: 0; 
  }
  to {
    transform: translateY(0); opacity: 1;
  }
}

/* ========== COOKIE SETTINGS MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%) scale(1);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 44px #FFD85B33, 0 8px 24px #1C6B4741;
  z-index: 9001;
  width: 93vw;
  max-width: 430px;
  padding: 36px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity .22s, transform .22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -65%) scale(0.92);
  visibility: hidden;
}
.cookie-modal h2 {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 1.18rem;
}
.cookie-modal label {
  font-size: 1.09rem;
  color: #313e36;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-toggle {
  margin-right: 10px;
  accent-color: var(--color-electric-green);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 22px;
  padding: 8px 22px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal .desc {
  font-size: 0.99rem;
  color: #5b6c60;
  margin-bottom: 12px;
}
.cookie-modal .cookie-essential {
  opacity: 0.7;
}
.cookie-modal .cookie-essential .cookie-toggle {
  pointer-events: none;
}

/* ========== UTILITY ========== */
.hide { display: none !important; }
.visible { display: block !important; }

/* ========== ACCESSIBILITY ========== */
:focus-visible { outline: 2px solid #07bfff; outline-offset: 2px; }

/* ========== Z-INDEX MANAGEMENT ========== */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 150+ !important;
}

/* Override HTML bug for anchors overlay */
a:active { outline: none; }


/* ===== Animated underline for link buttons (for vibrancy) ===== */
.button, .button-primary, .button-secondary, nav a, .mobile-nav a {
  position: relative;
}
nav a:after, .mobile-nav a:after {
  content: '';
  position: absolute;
  left: 20%; right: 20%; bottom: 4px;
  height: 2px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.2s, left 0.2s, right 0.2s;
}
nav a:hover:after, nav a:focus:after, .mobile-nav a:hover:after, .mobile-nav a:focus:after {
  opacity: 1;
  left: 10%; right: 10%;
}

/* ===== Custom scrollbar for modal ===== */
.cookie-modal::-webkit-scrollbar { width: 7px; background: #eee; }
.cookie-modal::-webkit-scrollbar-thumb { background: #FFD85B; border-radius: 6px; }
