/* === 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, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #121f38;
  color: #F9FAFB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }

/* === FONT FACES (GOOGLE FONTS) === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #F9FAFB;
}
h1 { font-size: 2.2rem; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.19rem; margin-bottom: 14px; }
h4, h5, h6 { margin-bottom: 10px; }
strong { font-weight: 600; }
p {
  color: #e4eaef;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
}

/* === BRAND COLORS & CUSTOM PROPERTIES === */
:root {
  --color-primary: #23395D;
  --color-secondary: #19A974;
  --color-accent: #F9FAFB;
  --color-bg: #121f38;
  --color-neon: #1AF5C4;
  --color-card: #213050;
  --color-card-alt: #15213a;
  --color-shadow: rgba(26, 245, 196, 0.14);
  --color-btn-hover: #19A974;
  --color-focus: #39F4C7;
  --color-fg-dark: #101828;
  --color-fg-light: #F9FAFB;
  --color-muted: #b9c6d2;
  --color-testimonial-bg: #F9FAFB;
  --color-testimonial-fg: #23395D;
}

/* === GENERAL LAYOUT HELPERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 var(--color-neon);
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: linear-gradient(90deg, #19273D 0%, #22395d 100%);
  box-shadow: 0 1px 14px 0 var(--color-shadow);
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #b9c6d2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0 7px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.18s, border 0.14s;
}
header nav a:hover,
header nav a:focus {
  color: #19A974;
  border-bottom: 2px solid #19A974;
  outline: none;
}
header nav .cta-btn {
  background: var(--color-neon);
  color: var(--color-fg-dark);
  font-weight: 700;
  border-radius: 26px;
  padding: 8px 22px;
  font-size: 1.06rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px 0 rgba(26,245,196,.14);
  border: none;
  transition: background 0.24s, color 0.18s, box-shadow 0.32s;
  margin-left: 16px;
  display: inline-block;
}
header nav .cta-btn:hover, header nav .cta-btn:focus {
  background: #19A974;
  color: #fff;
  box-shadow: 0 4px 24px 0 var(--color-neon);
}
header img {
  max-height: 46px;
  width: auto;
  display: block;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2rem;
  cursor: pointer;
  z-index: 22;
  padding: 4px 10px 0 10px;
  border-radius: 12px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-focus);
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  padding: 40px 32px 32px 24px;
  background: linear-gradient(110deg, #203162 65%, #232f49 100%);
  box-shadow: -3px 0 32px 0 rgba(26,245,196,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.87,-.41,.19,1.43);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1AF5C4;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  align-self: flex-end;
  margin-bottom: 18px;
  border-radius: 10px;
  padding: 4px 16px 0 8px;
  z-index: 2;
}
.mobile-menu-close:focus {
  outline: 2px solid #1AF5C4;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: transparent;
  padding: 9px 0 9px 2px;
  border-radius: 7px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-neon);
  color: #23395D;
  outline: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO STYLES === */
.hero {
  background: linear-gradient(120deg, #19273D 60%, #19A974 170%);
  box-shadow: 0 4px 48px 0 rgba(26,245,196,0.12);
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  border-radius: 0 0 42px 42px;
  overflow: hidden;
}
.hero h1 {
  color: #F9FAFB;
  font-size: 2.4rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 42px #19A97411;
}
.hero p {
  color: #c8eafb;
  font-size: 1.18rem;
  margin-bottom: 32px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* === FEATURES === */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 24px 0 0 0;
}
.features .feature-grid li {
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 270px;
  min-width: 180px;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.features .feature-grid li:hover {
  box-shadow: 0 6px 24px 0 #1AF5C4aa;
  transform: translateY(-3px) scale(1.012);
}
.features .feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.features .feature-grid h3 {
  color: #1AF5C4;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.features .feature-grid p {
  color: #b9c6d2;
  font-weight: 400;
  font-size: .98rem;
}

/* === SERVICES (INDEX, DIENSTLEISTUNGEN) === */
.service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--color-card-alt);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 32px 26px 28px 26px;
  width: 100%;
  max-width: 260px;
  min-width: 175px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.17s;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 8px 36px 0 var(--color-neon);
  transform: translateY(-4px) scale(1.017);
}
.service-card h2, .service-card h3 {
  color: #19A974;
  margin-bottom: 10px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.service-card p {
  color: #b9c6d2;
  margin-bottom: 10px;
  font-size: .99rem;
}
.service-card div {
  color: #19A974;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 9px;
}
.service-card .cta-btn {
  margin-top: 6px;
  padding: 6px 16px;
}

/* === ARTICLES/TEASERS/STORIES === */
.article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 20px 0;
}
.article-preview {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(26,245,196,0.09);
  padding: 22px 20px;
  width: 100%;
  max-width: 260px;
  min-width: 175px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.article-preview:hover {
  box-shadow: 0 9px 33px 0 #19A97455;
  transform: translateY(-2px) scale(1.012);
}
.article-preview h3 {
  color: #1AF5C4;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.article-preview p {
  color: #c2e5e1;
  font-size: .98rem;
}
.category-filters {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  font-size: .99rem;
  color: #7eecc1;
}
.category-filters strong { color: #19A974; }
.category-filters span {
  background: #1AF5C41c;
  color: #19A974;
  border-radius: 7px;
  padding: 1px 10px;
  margin: 0 2.5px;
  font-size: .96rem;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 40px 20px 40px 20px;
  margin-bottom: 60px;
}
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-fg);
  box-shadow: 0 4px 28px 0 rgba(35,57,93,0.13);
  border-radius: 18px;
  padding: 24px 32px 18px 22px;
  min-width: 180px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 #23395D42;
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card p {
  color: #23395D;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
.testimonial-card div {
  color: #19A974;
  font-weight: 600;
  font-size: .98rem;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 20px 26px;
  transition: box-shadow .17s, transform .13s;
}
.faq-item:hover {
  box-shadow: 0 9px 24px 0 #1AF5C433;
  transform: translateY(-1.5px) scale(1.013);
}
.faq-item h2 {
  color: #1AF5C4;
  font-size: 1.02rem;
  margin-bottom: 9px;
}
.faq-item p {
  color: #c2e5e1;
  font-size: .98rem;
}

/* === CTA BUTTONS === */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #1AF5C4 0%, #19A974 100%);
  color: #23395D;
  border: none;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 10px 30px;
  box-shadow: 0 2px 10px 0 rgba(26,245,196,0.12);
  position: relative;
  cursor: pointer;
  letter-spacing: .3px;
  margin-top: 8px;
  margin-bottom: 8px;
  z-index: 1;
  transition: background 0.18s, color 0.18s, box-shadow 0.28s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #19A974;
  color: #fff;
  box-shadow: 0 4px 24px 0 var(--color-neon);
  outline: none;
  transform: scale(1.026);
}

/* === FOOTER === */
footer {
  background: #1C2D45;
  color: #b9c6d2;
  width: 100%;
  margin-top: 48px;
  box-shadow: 0 -1px 15px 0 #19A97414;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 20px 18px 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.footer-menu a {
  color: #81e8c9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-menu a:hover {
  color: #1AF5C4;
}
.footer-info {
  color: #b9c6d2;
  font-size: .97rem;
  margin-top: 6px;
}

/* === CONTENT AND TEXT BLOCKS === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
  padding-left: 18px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  color: #81e8c9;
  font-size: 1rem;
  line-height: 1.6;
}

/* === CASE STUDIES & LISTS === */
.case-studies ul, .quick-hacks ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 17px;
}
.case-studies ul li, .quick-hacks ul li {
  background: #15213a;
  border-radius: 10px;
  color: #99f3da;
  font-size: .98rem;
  padding: 10px 16px;
}

/* === MAP SECTION === */
.map-section {
  background: linear-gradient(110deg, #17233e 40%, #19A974 330%);
  border-radius: 16px;
  padding: 32px 0;
  margin-bottom: 60px;
  box-shadow: 0 3px 22px 0 rgba(26,245,196,0.08);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(90deg, #15213a 55%, #1AF5C4 140%);
  border-radius: 18px;
  box-shadow: 0 3px 22px 0 rgba(26,245,196,0.10);
  padding: 36px 0 32px 0;
  margin-bottom: 20px;
  text-align: center;
}
.cta-section h2 {
  color: #19A974;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.cta-section p {
  color: #b9c6d2;
  font-size: 1.14rem;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  z-index: 9999;
  background: #222f47;
  color: #F9FAFB;
  box-shadow: 0 -2px 30px 0 #19A97444;
  padding: 22px 12px;
  font-size: 1rem;
  align-items: center;
  gap: 20px;
  animation: banner-slide-up 0.52s ease-out 0s 1;
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-btn {
  background: linear-gradient(90deg, #1AF5C4 0%, #19A974 100%);
  color: #23395D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  padding: 8px 22px;
  cursor: pointer;
  margin-left: 8px;
  margin-right: 8px;
  box-shadow: 0 1px 8px 0 rgba(26,245,196,0.16);
  transition: background 0.16s, color .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #19A974;
  color: #fff;
  outline: none;
}
.cookie-settings-link {
  color: #19A974;
  text-decoration: underline;
  margin-left: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-settings-link:hover {
  color: #1AF5C4;
}
.cookie-modal-overlay {
  display: none !important;
}
@keyframes modal-pop {
  from { transform: scale(0.97); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #19A974;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #23395D;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .cookie-toggle {
  width: 44px;
  height: 22px;
  appearance: none;
  background: #c9e9da;
  outline: none;
  border: 1.5px solid #19A97460;
  border-radius: 12px;
  transition: background 0.21s;
  position: relative;
}
.cookie-modal .cookie-toggle:checked {
  background: #19A974;
}
.cookie-modal .cookie-toggle:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 #adc;
  transition: transform 0.23s;
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(21px);
}
.cookie-modal .cookie-essential {
  color: #19A974;
  font-weight: 700;
}
.cookie-modal .cookie-modal-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #23395D;
  font-size: 1.45rem;
  position: absolute;
  top: 13px;
  right: 18px;
  cursor: pointer;
  padding: 4px 2px;
  border-radius: 8px;
}
.cookie-modal-close:focus {
  outline: 2px solid #19A974;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 1050px) {
  .features .feature-grid li, .service-card, .article-preview {
    max-width: 100%;
    min-width: 160px;
  }
  .testimonial-card {
    max-width: 95vw;
    min-width: 110px;
  }
}
@media (max-width: 900px) {
  .footer-menu, .service-list, .service-grid, .article-teasers, .features .feature-grid, .testimonial-list {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.16rem; }
  .hero h1 { font-size: 1.38rem; }
}
@media (max-width: 768px) {
  .hero, .cta-section, .map-section {
    padding: 32px 0 28px 0;
    border-radius: 0 0 20px 20px;
  }
  .section, .testimonials {
    padding: 24px 4vw;
    margin-bottom: 36px;
  }
  .features .feature-grid, .service-list, .article-teasers, .service-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid, .footer-menu {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-modal {
    width: 98vw;
    max-width: 98vw;
    padding: 34px 7vw 24px 7vw;
  }
}
@media (max-width: 500px) {
  header .container { padding: 0 5px; }
  .hero { padding: 24px 0 18px 0; }
  .cta-section, .map-section { padding: 14px 0 8px 0; }
  .testimonial-card { padding: 11px 10px; }
  .service-card, .article-preview, .features .feature-grid li {
    padding: 12px 8px;
  }
  .card { padding: 14px 7px; }
  .section, .testimonials { padding: 12px 3vw; }
  .cookie-modal { padding: 22px 2vw 18px 2vw; }
}

/* === MICRO-INTERACTIONS/ANIMATIONS === */
.btn-pulse {
  animation: pulsebtn 1.5s infinite cubic-bezier(.71,.04,.49,.96);
}
@keyframes pulsebtn {
  0% { box-shadow: 0 0 0 0 #19A97488; }
  70% { box-shadow: 0 0 0 12px #19A97400; }
  100% { box-shadow: 0 0 0 0 #19A97400; }
}
.card, .service-card, .feature-grid li, .article-preview, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s, transform 0.1s;
}

/* === MISCELLANEOUS UTILITY === */
::-webkit-scrollbar {
  width: 11px;
  background: #17233e;
}
::-webkit-scrollbar-thumb {
  background: #19A974;
  border-radius: 11px;
}
::-webkit-input-placeholder { color: #a9bbcc; }
::-moz-placeholder { color: #a9bbcc; }
:-ms-input-placeholder { color: #a9bbcc; }
::placeholder { color: #a9bbcc; }

/* === ACCESSIBILITY OUTLINES === */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 3px solid #19A974;
  outline-offset: 0;
}

/* Spacing for all cards/sections and prevent overlaps */
.section, .card, .service-card, .testimonial-card, .faq-item, .article-preview, .features .feature-grid li {
  margin-bottom: 20px;
}

/* Hide elements visually (for scripts accessibility) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
