/* RESET & BASE ---------------------------------------------------------- */
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F5F3;
  color: #232323;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #28536B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFC857;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #28536B;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; letter-spacing: -2px; }
h2 { font-size: 2rem; letter-spacing: -1.5px; }
h3 { font-size: 1.25rem; letter-spacing: -1px; }
p, li { font-size: 1rem; margin-bottom: 12px; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* LAYOUT ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(40,83,107,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

/* FLEXBOX UTILITY CLASSES -------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(40,83,107,0.06);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(40,83,107,0.10);
  transform: translateY(-4px) scale(1.025);
  z-index: 3;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #F5F5F3;
  border-left: 6px solid #FFC857;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(40,83,107,0.06);
  min-width: 260px;
  max-width: 480px;
}
.testimonial-card p {
  color: #232323;
  font-weight: 600;
  font-size: 1.15rem;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO -------------------------------------------------------- */
.hero {
  background: #28536B;
  color: #fff;
  padding: 56px 0;
  margin-bottom: 48px;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 16px 32px rgba(40,83,107,0.08);
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero p {
  color: #fff;
  font-size: 1.25rem;
}
.hero .btn-primary {
  margin-top: 28px;
}

/* BUTTONS ----------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #FFC857;
  color: #28536B;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(40,83,107,0.11);
  transition: background 0.18s, transform 0.18s, color 0.18s;
  text-shadow: none;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffd76a;
  color: #232323;
  transform: scale(1.04) translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #fff;
  color: #28536B;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #28536B;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  text-decoration: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #28536B;
  color: #fff;
  border-color: #28536B;
}

/* NAVBAR ------------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(40,83,107,0.04);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a:not(.btn-primary) {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.6px;
  color: #28536B;
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.14s, background 0.14s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: #FFC857;
  color: #232323;
}
.mobile-menu-toggle {
  display: none;
  background: #FFC857;
  color: #28536B;
  font-size: 2.2rem;
  border: none;
  border-radius: 10px;
  padding: 6px 20px 2px 20px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 6px 0 rgba(40,83,107,0.07);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd76a;
}

/* MOBILE NAVIGATION ------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #28536B;
  z-index: 120;
  transform: translateX(100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform 0.32s cubic-bezier(.23,1.17,.62,1), opacity 0.22s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #FFC857;
  border: none;
  font-size: 2.4rem;
  margin: 32px 32px 24px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 36px;
  gap: 12px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.20rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 12px 6px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  text-align: left;
}
.mobile-nav a.btn-primary {
  margin-top: 22px;
  background: #FFC857;
  color: #28536B;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
}
.mobile-nav a:not(.btn-primary):hover, .mobile-nav a:not(.btn-primary):focus {
  background: #FFC857;
  color: #28536B;
}

/* SEARCH BAR, FILTERS ------------------------------------------ */
.search input[type="search"] {
  width: 100%;
  max-width: 420px;
  font-size: 1.06rem;
  padding: 12px 16px;
  border: 2px solid #28536B;
  border-radius: 10px;
  margin-bottom: 18px;
  outline: none;
  background: #F5F5F3;
  color: #232323;
  font-family: 'Open Sans', sans-serif;
  transition: border 0.15s;
}
.search input[type="search"]:focus {
  border-color: #FFC857;
}
.search select, .filters select {
  font-size: 1rem;
  padding: 8px 14px;
  border: 2px solid #28536B;
  border-radius: 8px;
  margin: 0 16px 0 8px;
  background: #fff;
  color: #28536B;
  font-family: 'Open Sans', sans-serif;
}
.search label, .filters label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #28536B;
}
.filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

/* FEATURE CARDS ----------------------------------------------- */
.features .feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
}
.features .feature-grid li, .feature-list li {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,83,107,0.05);
  padding: 32px 22px 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-left: 5px solid #FFC857;
  min-width: 190px;
  max-width: 340px;
}
.features .feature-grid img, .feature-list img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 6px;
  background: #F5F5F3;
  box-shadow: 0 1px 5px 0 rgba(40,83,107,0.04);
}
.features .feature-grid h3, .feature-list h3 {
  color: #28536B;
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 0;
}

/* SHOP CARDS -------------------------------------------------- */
.shop-listing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.shop-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px 0 rgba(40,83,107,0.07);
  flex: 1 1 300px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 5px solid #28536B;
  transition: transform 0.16s, box-shadow 0.16s;
}
.shop-card h2 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: 0px;
}
.shop-card span {
  color: #FFC857;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.shop-card:hover, .shop-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(40,83,107,0.15);
  transform: translateY(-2px) scale(1.018);
}

/* SERVICE CARDS (sluzby-pro-obchodniky) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px 28px 20px;
  box-shadow: 0 2px 12px 0 rgba(40,83,107,0.07);
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #FFC857;
}
.service-card .price {
  color: #28536B;
  background: #FFC857;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  align-self: flex-end;
  margin-top: 12px;
  padding: 4px 16px;
  border-radius: 24px;
}

/* CTA SECTION ------------------------------------------------- */
.cta-section {
  background: #FFC857;
  color: #28536B;
  text-align: center;
  border-radius: 38px;
  margin-bottom: 60px;
  padding: 40px 20px 48px 20px;
  box-shadow: 0 2px 18px 0 rgba(40,83,107,0.06);
}
.cta-section h2 {
  color: #28536B;
}
.cta-section p {
  color: #28536B;
}

/* FAQ ACCORDION ----------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(40,83,107,0.05);
  padding: 18px 18px 12px 22px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.12rem;
  color: #28536B;
}

/* TIMELINE (JAK TO FUNGUJE) ----------------------------------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 12px 0;
  list-style: decimal inside;
}
.timeline li {
  background: #fff;
  border-radius: 10px;
  padding: 12px 22px;
  box-shadow: 0 1px 6px 0 rgba(40,83,107,0.05);
  font-weight: 600;
  margin-bottom: 4px;
}

/* COOKIE CONSENT BANNER --------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #28536B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 22px 40px;
  box-shadow: 0 -2px 18px rgba(40,83,107,0.04);
  z-index: 4000;
  font-size: 1rem;
  transition: transform 0.25s, opacity 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  flex: 1 1 250px;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 0 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 24px;
  padding: 9px 24px;
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.14s;
}
.cookie-banner .accept {
  background: #FFC857;
  color: #28536B;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #ffd76a;
}
.cookie-banner .reject {
  background: #fff;
  color: #28536B;
  border: 2px solid #FFC857;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFC857;
  color: #28536B;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFC857;
  border: 2px solid #FFC857;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFC857;
  color: #28536B;
}

/* COOKIE MODAL ------------------------------------------------ */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 4100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(40,83,107, 0.67);
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #232323;
  max-width: 430px;
  width: 90vw;
  border-radius: 16px;
  box-shadow: 0 4px 44px rgba(40,83,107,0.18);
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal h2 {
  color: #28536B;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
}
.cookie-modal label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #28536B;
  font-size: 1.7rem;
  position: absolute;
  top: 14px; right: 22px;
  cursor: pointer;
}

/* FOOTER ------------------------------------------------------ */
footer {
  background: #28536B;
  color: #fff;
  padding: 38px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #FFC857;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ffd76a;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.footer-brand img {
  height: 32px;
  width: auto;
}

/* LEGAL SECTION ----------------------------------------------- */
.legal-text {
  background: #fff;
  border-radius: 11px;
  padding: 30px 22px;
  box-shadow: 0 1px 6px 0 rgba(40,83,107,0.03);
  margin-bottom: 24px;
}
.legal-text h2 {
  color: #28536B;
  font-size: 1.18rem;
}
.legal-text ul {
  margin-bottom: 12px;
}

/* REGISTRATION PAGE ------------------------------------------- */
.registration_form_notice, .privacy_policy_notice, .instructions {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(40,83,107,0.04);
  padding: 20px 20px 14px 22px;
  margin-bottom: 14px;
}
.registration_form_notice ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.privacy_policy_notice a {
  color: #28536B;
  text-decoration: underline;
}
.privacy_policy_notice a:hover {
  color: #FFC857;
}

/* TEAM, VALUES SECTIONS --------------------------------------- */
.values ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.mission, .team {
  margin-bottom: 26px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(40,83,107,0.04);
}

/* CONFIRMATION ------------------------------------------------ */
.confirmation, .thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.next-steps-info {
  color: #28536B;
  font-size: 1.12rem;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

/* MAP EMBED NOTE ---------------------------------------------- */
.map-embed-note {
  margin: 20px 0;
  color: #666;
}

/* RESPONSIVE DESIGN ------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
  .main-nav {
    gap: 9px;
  }
  .shop-listing-grid, .feature-grid, .feature-list, .service-list {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 36px 0;
  }
  .service-card, .feature-grid li, .shop-card {
    min-width: 180px;
    max-width: 340px;
    padding: 22px 10px;
  }
  .feature-grid, .feature-list, .shop-listing-grid, .service-list {
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 34px;
    border-radius: 11px;
  }
  .hero {
    padding: 36px 0 24px 0;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .testimonials .testimonial-card {
    min-width: 50vw;
    max-width: 98vw;
  }
  .feature-grid, .feature-list, .shop-listing-grid, .service-list {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
  }
  .service-card, .feature-grid li, .shop-card {
    min-width: 80vw;
    max-width: 99vw;
    padding: 18px 8px;
    font-size: 1rem;
  }
  .cta-section {
    padding: 24px 8px 28px 8px;
    border-radius: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 19px 6px;
    font-size: 0.95rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .mobile-menu {
    width: 100vw;
    padding: 0;
  }
  .mobile-nav {
    padding: 10px 10vw 20px 10vw;
  }
}
@media (max-width: 450px){
  h1 {font-size: 1.38rem;}
  h2 {font-size: 1.15rem;}
}

/* MICRO-INTERACTIONS & TRANSITIONS ---------------------------- */
.card, .service-card, .feature-grid li, .shop-card, .testimonial-card, .faq-item, .btn-primary, .btn-secondary {
  transition: box-shadow 0.18s, transform 0.18s, background 0.16s, color 0.16s;
}

/* GEOMETRIC SHAPES (visual accents) --------------------------- */
.section::before {
  content: '';
  display: block;
  width: 48px; height: 6px;
  background: #FFC857;
  border-radius: 8px;
  margin-bottom: 24px;
}
.hero .container::before {
  content: '';
  display: block;
  width: 82px; height: 9px;
  background: #FFC857;
  border-radius: 12px;
  margin-bottom: 24px;
}
@media (max-width: 768px){
  .section::before {
    width: 28px; height: 4px;
    margin-bottom: 14px;
  }
  .hero .container::before {
    width: 44px; height: 6px;
    margin-bottom: 16px;
  }
}

/* Z-INDEX SAFEGUARDS & NO ABSOLUTE CARDS ---------------------- */
.section, .card, .service-card, .feature-grid li, .shop-card, .testimonial-card {
  position: relative;
  z-index: 1;
}
.mobile-menu, .cookie-banner, .cookie-modal-backdrop {
  z-index: 2000;
}

/* PRINT ------------------------------------------------------ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  .section {
    box-shadow: none;
    background: #fff;
  }
}

/* FONT-FACE -------------------------------------------------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Open+Sans:wght@400;700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 700;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}
