/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4FAFF;
  color: #2C2222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #205072;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #BE7825;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: 600;
}

/* VINTAGE RETRO THEME: COLORS & FONTS */
:root {
  --color-primary: #205072;
  --color-secondary: #329D9C;
  --color-accent: #F4FAFF;
  --color-highlight: #BE7825;
  --color-card-bg: #FFF8F0;
  --color-cream: #F6E3C5;
  --color-retro-aqua: #56B8AE;
  --color-retro-red: #D97344;
  --color-retro-yellow: #F6C244;
  --color-retro-blue: #426A8C;
  --color-bg-dark: #292014;
  --text-light: #FFF8F0;
  --text-dark: #2C2222;
  --shadow-vintage: 0 2px 6px rgba(44,34,34,0.13), 0 2px 16px rgba(46,83,91,0.06);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--color-accent);
  color: var(--text-dark);
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.05;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.05rem;
}
p, li {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.subheadline {
  color: var(--color-retro-red);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.text-section ul {
  margin-top: 10px;
  list-style: square inside;
}
.text-section ul li {
  margin-bottom: 8px;
  padding-left: 0.2em;
  font-size: 1.05rem;
}
.text-section img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin-top: 0px;
  margin-bottom: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-retro-yellow);
  border-radius: 20px;
  box-shadow: var(--shadow-vintage);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(44,34,34,0.17), 0 3px 18px rgba(46,83,91,0.09);
  transform: translateY(-5px) scale(1.02) rotate(-0.6deg);
}
.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: var(--color-cream);
  border-radius: 18px;
  box-shadow: var(--shadow-vintage);
  margin-bottom: 20px;
  border: 2px solid var(--color-retro-blue);
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO RETRO SECTION */
.hero {
  background: repeating-linear-gradient(135deg,
    var(--color-cream) 0 45px, var(--color-retro-yellow) 45px 60px, var(--color-cream) 60px 120px);
  box-shadow: 0 8px 24px rgba(46,83,91,0.08);
  border-bottom: 6px solid var(--color-retro-blue);
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  background: none;
  box-shadow: none;
  gap: 18px;
}

/* FEATURE GRID RETRO */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}
.feature-grid li {
  background: var(--color-card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow-vintage);
  border: 2px solid var(--color-retro-red);
  padding: 24px 18px 20px 18px;
  flex: 1 1 210px;
  max-width: 330px;
  min-width: 185px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 24px rgba(217, 115, 68, 0.13);
  transform: translateY(-7px) rotate(-1deg) scale(1.02);
}
.feature-grid img {
  width: 42px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 3px rgba(32,80,114,0.08));
}
.feature-grid h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
  color: var(--color-retro-blue);
}

/* SERVICE LIST (Oferta page) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  list-style: none;
  margin: 10px 0 32px 0;
  padding: 0;
}
.service-list li {
  background: var(--color-card-bg);
  border-radius: 12px;
  border-left: 9px solid var(--color-retro-yellow);
  box-shadow: 0 2px 8px rgba(217, 115, 68, 0.11);
  padding: 18px 20px;
  margin-bottom: 5px;
  transition: box-shadow 0.12s, border 0.12s;
}
.service-list li:hover {
  box-shadow: 0 6px 24px rgba(217,115,68,0.19);
  border-left: 9px solid var(--color-retro-red);
}
.service-list h2 {
  color: var(--color-retro-blue);
  font-size: 1.25rem;
}
.service-list strong {
  color: var(--color-retro-red);
  font-weight: 600;
}

/* PRICING SUMMARY */
.pricing-summary, .service-support-summary {
  background: var(--color-cream);
  border-radius: 14px;
  border-left: 5px solid var(--color-retro-blue);
  box-shadow: 0 2px 8px rgba(32,80,114,0.08);
  padding: 17px 22px 15px 22px;
  margin-top: 18px;
}
.pricing-summary h3 {
  color: var(--color-retro-red);
  font-size: 1.2rem;
  margin-bottom: 9px;
}

/* COMPARISON TABLE RETRO STYLE */
.comparison-table {
  margin-top: 28px;
}
.comparison-table h3 {
  margin-bottom: 10px;
  color: var(--color-retro-blue);
}
.comparison-table table {
  width: 100%;
  background: var(--color-card-bg);
  border-radius: 10px;
  border-collapse: collapse;
  box-shadow: var(--shadow-vintage);
  overflow: hidden;
  font-size: 1.06em;
}
.comparison-table th, .comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px dotted var(--color-retro-yellow);
  text-align: left;
}
.comparison-table th {
  background-color: var(--color-retro-yellow);
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.98em;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* EVENT FILTER */
.event-filter {
  background: var(--color-card-bg);
  padding: 16px 18px;
  border-radius: 13px;
  border: 2px dashed var(--color-retro-aqua);
  margin: 21px 0 30px 0;
}
.event-filter h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.event-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
}
.event-filter li {
  padding: 6px 16px;
  border-radius: 16px;
  background: var(--color-cream);
  color: var(--color-retro-blue);
  border: none;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.12s;
}
.event-filter li strong, .event-filter li:active {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
}
.upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 16px 0 30px 0;
}
.upcoming-events-list li {
  background: var(--color-card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow-vintage);
  padding: 19px 22px;
  border-left: 8px solid var(--color-retro-aqua);
  transition: border-color 0.16s, box-shadow 0.16s;
}
.upcoming-events-list li:hover {
  border-left: 8px solid var(--color-retro-red);
  box-shadow: 0 10px 18px 0 rgba(217,115,68,0.12);
}
.upcoming-events-list h3 {
  margin-bottom: 7px;
  color: var(--color-retro-blue);
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.036em;
  border-radius: 34px;
  padding: 12px 30px;
  margin-top: 12px;
  box-shadow: 0 2px 12px rgba(217, 115, 68, 0.11);
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.19s, color 0.19s, transform 0.12s, box-shadow 0.15s;
  text-transform: uppercase;
  text-decoration: none;
}
.cta.primary {
  background: var(--color-retro-red);
  color: var(--text-light);
  border: 2px solid var(--color-retro-red);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-3px) scale(1.04);
}
.cta.secondary {
  background: var(--color-cream);
  color: var(--color-primary);
  border: 2px solid var(--color-retro-blue);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-retro-yellow);
  color: var(--color-retro-blue);
  border-color: var(--color-retro-red);
  transform: translateY(-3px) scale(1.04);
}

/* MAIN NAVIGATION RETRO */
header {
  background: #FFF8F0;
  border-bottom: 3px solid var(--color-retro-yellow);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 12px 10px 12px 10px;
}
.main-nav img {
  height: 36px;
  margin-right: 15px;
  vertical-align: middle;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 15px;
  border-radius: 12px;
  font-weight: 700;
  background: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
  margin-right: 2px;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-retro-yellow);
  color: var(--color-retro-blue);
  box-shadow: 0 3px 12px rgba(217, 115, 68, 0.09);
}
.main-nav .primary {
  margin-left: 15px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--color-retro-blue);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 8px;
  padding: 2px 15px 2px 15px;
  margin-right: 10px;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 200;
}
.mobile-menu-toggle:hover {
  background: var(--color-retro-red);
  color: #FFF8F0;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-bg-dark);
  color: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 44px 0 rgba(50,50,20,0.44);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 16px 21px 8px 0;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 99999;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-retro-yellow);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: none;
  font-size: 1.33rem;
  padding: 11px 8px;
  border-radius: 8px;
  width: 88vw;
  text-align: center;
  margin-bottom: 7px;
  text-transform: uppercase;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
}

/* SHOW/HIDE NAV ON BREAKPOINT */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 9px;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* TESTIMONIALS RETRO */
.testimonial-card {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  background: #fffaee;
  border: 2px dashed var(--color-retro-blue);
  color: var(--color-bg-dark);
  box-shadow: 0 2px 10px rgba(32,80,114,0.04);
}
.testimonial-card blockquote {
  font-style: italic;
  margin: 0;
  color: var(--color-retro-red);
  font-size: 1.16rem;
  line-height: 1.4;
}
.testimonial-card p {
  color: var(--color-retro-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
}

/* FOOTER RETRO STYLE */
footer {
  background: #fff6e5;
  border-top: 4px solid var(--color-retro-yellow);
  margin-top: 60px;
}
.footer-logo img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0 7px 0;
  align-items: center;
}
.footer-nav a {
  color: var(--color-retro-blue);
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-retro-yellow);
  color: var(--color-retro-red);
}
.footer-contact {
  margin-top: 9px;
  font-size: 1rem;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-bottom {
  margin-top: 10px;
  padding-bottom: 18px;
  font-size: 0.94rem;
  color: var(--color-primary);
  text-align: center;
  opacity: 0.84;
}

/* COOKIE BANNER AND MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  background: var(--color-card-bg);
  box-shadow: 0 -5px 36px 0 rgba(217, 115, 68, 0.12);
  border-top: 3px solid var(--color-retro-yellow);
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 20px 16px 18px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-bg-dark);
  transition: transform 0.23s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--color-retro-blue);
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  font-size: 1rem;
  padding: 8px 18px;
  border: 2px solid var(--color-retro-blue);
  background: var(--color-cream);
  color: var(--color-retro-blue);
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button.accept {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border-color: var(--color-retro-yellow);
}
.cookie-banner button.accept:hover { background: var(--color-primary); color: #fff; }
.cookie-banner button.reject {
  background: var(--color-retro-red);
  color: #fff;
  border-color: var(--color-retro-red);
}
.cookie-banner button.reject:hover { background: #fff; color: var(--color-retro-red); }
.cookie-banner button.settings {
  background: var(--color-cream);
  color: var(--color-retro-blue);
  border-color: var(--color-retro-blue);
}
.cookie-banner button.settings:hover {
  background: var(--color-retro-blue);
  color: #FFF8F0;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  background: #fffaee;
  box-shadow: 0 8px 40px rgba(46,83,91,0.15);
  border-radius: 19px;
  width: 92vw;
  max-width: 420px;
  min-width: 210px;
  max-height: 90vh;
  transform: translate(-50%,-50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.24s cubic-bezier(.77,0,.18,1);
  padding: 27px 26px 22px 26px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.19rem;
  color: var(--color-retro-red);
  margin-bottom: 11px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin: 14px 0 11px 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-retro-blue);
  width: 22px;
  height: 22px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}
.cookie-modal .cookie-category-essential {
  opacity: 0.65;
}
.cookie-modal-buttons {
  margin-top: 19px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  background: var(--color-retro-red);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  padding: 6px 17px;
  cursor: pointer;
  transition: background 0.11s;
}
.cookie-modal .close-cookie-modal:hover {
  background: var(--color-primary);
}

/* RESPONSIVE FLEXBOX ADJUSTMENTS */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .content-wrapper, .text-section {
    gap: 28px;
  }
  .feature-grid li, .service-list li { min-width: 120px; max-width: 99vw; }
}
@media (max-width: 768px) {
  .hero .container { min-height: 140px; padding-top: 26px; padding-bottom: 20px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 27px 7px; }
  .main-nav { display: none !important; }
  .footer-nav { gap: 7px; flex-wrap: wrap; font-size: 0.99rem; }
  .footer-logo img { height: 35px; }
  .content-grid, .card-container { flex-direction: column; gap: 16px; }
  .feature-grid { flex-direction: column; gap: 13px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 7px; max-width: 98vw; }
  .upcoming-events-list li { padding: 15px 8px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.11rem; }
  .cta, .cta.primary, .cta.secondary {
    font-size: 1rem;
    padding: 10px 14px;
  }
  .cookie-modal { padding: 12px 6px 12px 6px; }
}

/* UTILITIES */
.mt-16 { margin-top: 16px!important; }
.mb-32 { margin-bottom: 32px!important; }
.text-center { text-align: center!important; }
.text-left { text-align: left!important; }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
section, .testimonial-card, .feature-grid li, .service-list li, .cookie-banner, .cookie-modal {
  animation: fadeInUp 1.1s cubic-bezier(.52,-0.01,.38,1) 0.03s 1 both;
}

/* Z-INDEX FIX FOR MENUS + BANNER */
header { z-index: 990; position: relative; }
.mobile-menu { z-index: 9990; }
.cookie-banner, .cookie-modal { z-index: 99998; }

/* FINAL VINTAGE/NOSTALGIA FINISHES */
body {
  background: repeating-linear-gradient(90deg, #f2e7cf 0 40px, #f4faff 40px 80px);
  background-size: 120px 120px;
}
.feature-grid li, .card, .service-list li {
  border-style: solid;
  border-width: 2.5px;
  border-image: repeating-linear-gradient(135deg, var(--color-retro-yellow), var(--color-retro-red), var(--color-retro-blue) 90%) 1;
}
.testimonial-card {
  font-family: 'Roboto Slab', 'Georgia', serif;
  background: repeating-linear-gradient(135deg, #fff8f0 0 36px, #e6d3b3 36px 72px, #fff8f0 72px 108px);
  border-image: repeating-linear-gradient(120deg, var(--color-retro-blue), var(--color-retro-yellow), var(--color-retro-red) 80%) 1;
}

/* Prevent overlaps globally */
section, .card, .testimonial-card, .feature-grid li, .service-list li, .upcoming-events-list li {
  margin-bottom: 24px;
}

/* Typography fallbacks for retro look */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
