/* =========================
   SCANDINAVIAN CLEAN RESET
   ========================= */

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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FFF9F2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1C3A39;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: none;
  background: none;
}
a {
  color: #1C3A39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #72A67E;
}
button, input[type="submit"], .cta-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
  outline: none;
  background: none;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
ul, ol {
  list-style: none;
}

/* =========================
   BRAND & SCANDINAVIAN COLORS
   ========================= */
:root {
  --primary: #1C3A39;
  --secondary: #72A67E;
  --accent: #FFF9F2;
  --natural-white: #FAF6EE;
  --light-grey: #E9EAE6;
  --border-light: #D7D8D8;
  --shadow: 0 2px 16px 0 rgba(28,58,57,0.06);
}

/* ============
   TYPOGRAPHY
   ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1C3A39;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #33403A;
}
strong {
  font-weight: 700;
}

section h1,
section h2 {
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
}

/* ========
   LAYOUT
   ======== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF9F2;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 35px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(28,58,57,0.12);
  transform: translateY(-4px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px 26px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #1C3A39;
  border-left: 5px solid #72A67E;
}
.testimonial-card p {
  flex: 1 1 auto;
  margin-bottom: 0;
  color: #1C3A39;
}
.testimonial-card span {
  font-size: .95rem;
  color: #687974;
  white-space: nowrap;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 20px 20px 20px;
  margin-bottom: 10px;
  min-width: 185px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 24px 0 rgba(28,58,57,0.11);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}

.shop-listing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.shop-card {
  flex: 1 1 270px;
  min-width: 205px;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border .23s;
}
.shop-card:hover {
  box-shadow: 0 4px 22px 0 rgba(28,58,57,.13);
  border-color: var(--secondary);
}
.shop-category {
  display: inline-block;
  background: var(--light-grey);
  color: var(--primary);
  border-radius: 8px;
  padding: 0.2em 0.75em;
  font-size: .95rem;
  margin-top: 3px;
  margin-right: 7px;
}
.shop-location {
  display: inline-block;
  color: #728A81;
  font-size: .95rem;
}

.promotion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.promotion-card {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 205px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .15s;
  border: 1.5px solid var(--border-light);
}
.promotion-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 28px 0 rgba(28,58,57,.11);
  transform: translateY(-2px) scale(1.015);
}
.highlighted-offer {
  color: #fff;
  background: var(--secondary);
  border-radius: 6px;
  padding: 0.15em 0.7em;
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  width: 100%;
}
.service-list li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px 16px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.service-list .service-price {
  color: #1C3A39;
  background: #F3F6F2;
  border-radius: 7px;
  padding: 0.2em 0.9em;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
}

/* Team Profiles */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-member {
  flex: 1 1 220px;
  min-width: 180px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 20px 16px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}
.values-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.values-list li {
  flex: 1 1 150px;
  background: var(--light-grey);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  color: #495F56;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 0 0;
  flex-wrap: wrap;
  font-size: 1rem;
}
.filter-controls label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #1C3A39;
}
.filter-controls select {
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  background: #FAF6EE;
  padding: 8px 10px;
  font-size: 1rem;
  color: #1C3A39;
  transition: border .15s;
}
.filter-controls select:focus {
  border: 1.5px solid var(--secondary);
}

input[type="search"] {
  border: 1.5px solid var(--border-light);
  border-radius: 7px;
  padding: 8px 13px;
  font-size: 1rem;
  color: #1C3A39;
  font-family: inherit;
  background: #FAF6EE;
  width: 260px;
  margin-bottom: 16px;
  transition: border .15s;
}
input[type="search"]:focus {
  border: 1.5px solid var(--secondary);
  outline: none;
}

/* ===========
   BUTTONS
   =========== */
.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 24px;
  box-shadow: 0 1px 4.2px 0 rgba(28,58,57,.06);
  letter-spacing: 0.01em;
  transition: background .18s, box-shadow .18s, transform .16s;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1C3A39;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(28,58,57,0.10);
  transform: translateY(-2px) scale(1.02);
}
.button, .btn, .cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--secondary);
  color: #fff;
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 12px;
  margin-bottom: 4px;
  transition: background .18s, color .18s, box-shadow .15s;
}
.button:hover, .btn:hover, .cookie-btn:hover {
  background: #1C3A39;
  color: #fff;
}
.button-outline, .btn-outline, .cookie-btn-outline {
  border: 1.5px solid var(--secondary);
  background: #fff;
  color: var(--secondary);
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 7px;
  transition: background .15s, color .15s, border .15s;
}
.button-outline:hover, .btn-outline:hover, .cookie-btn-outline:hover {
  background: var(--accent);
  color: #1C3A39;
  border-color: #1C3A39;
}

/* =======
   HEADER
   ======= */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #F0EDE7;
  box-shadow: 0 1px 8px 0 rgba(28,58,57,0.03);
  position: relative;
  z-index: 12;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
header .container > a img {
  height: 44px;
  width: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #1C3A39;
  font-size: 1.05rem;
  transition: color 0.14s;
  padding: 5px 2px;
  letter-spacing: 0.01em;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: var(--secondary);
}
header .cta-btn {
  margin-left: 26px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .desktop-nav, header .cta-btn {
    display: none;
  }
}
@media (max-width: 600px) {
  header .container > a img {
    height: 32px;
  }
}

/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  top: 17px;
  z-index: 30;
  border: none;
  transition: background .18s, opacity .16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 900px) {
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 32px 0 rgba(28,58,57,0.13);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  z-index: 300;
  opacity: 1;
  padding: 34px 24px 28px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  top: 16px;
  right: 22px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 35;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: #1C3A39;
  padding: 12px 0 8px 0;
  border-bottom: 1px solid #EEE6DB;
  transition: color .16s, background .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #72A67E;
  background: #F0F7F4;
}

@media (max-width: 600px) {
  .mobile-menu {
    max-width: 95vw;
    padding-left: 9vw;
  }
  .mobile-menu-close {
    right: 10px;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ================
   MAIN
   ================ */
main {
  width: 100%;
  flex: 1 1 auto;
  background: #FFF9F2;
}
main section {
  width: 100%;
}

.contact-details p, .footer-contact p {
  color: #33403A;
  margin-bottom: 6px;
  font-size: 1rem;
}

.thank-you-message {
  color: #1C3A39;
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-weight: 500;
}

/* =============
   FOOTER
   ============= */
footer {
  background: #fff;
  border-top: 1.5px solid #F0EDE7;
  margin-top: 60px;
  width: 100%;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 18px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 2px;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
}
.footer-links nav a {
  color: #728A81;
  font-size: .97rem;
  transition: color .15s;
  margin-bottom: 4px;
}
.footer-links nav a:hover, .footer-links nav a:focus {
  color: #1C3A39;
}
.footer-contact {
  font-size: .97rem;
  color: #495750;
  max-width: 250px;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
  transition: filter .13s;
}
.footer-social a:hover img {
  filter: brightness(0.8);
}
.footer-copy {
  flex-basis: 100%;
  font-size: .90rem;
  color: #687974;
  text-align: left;
  margin-top: 18px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-contact, .footer-links, .footer-social { margin-bottom: 10px; }
}
@media (max-width: 600px) {
  footer .container { padding-top: 18px; padding-bottom: 9px; }
  .footer-brand img { height: 24px; }
}

/* =============
   COOKIE BANNER
   ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(28,58,57,0.09);
  border-top: 2px solid #E7E2D5;
  z-index: 9999;
  padding: 22px 11vw 18px 11vw;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  transition: transform 0.29s cubic-bezier(.77,0,.18,1), opacity 0.20s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner p {
  color: #1C3A39;
  font-size: 1rem;
  max-width: 670px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 6vw 15px 6vw;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 11px 5vw 13px 5vw;
    gap: 11px;
    font-size: .98rem;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(74, 79, 79, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn .22s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
@keyframes cookieFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 46px 0 rgba(28,58,57,0.17);
  max-width: 96vw;
  width: 458px;
  padding: 35px 29px 26px 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalUp .28s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalUp {
  from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAF6EE;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.cookie-category.essential {
  background: #F3F6F2;
}
.cookie-category label {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1C3A39;
}

.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 20px;
  background: var(--light-grey);
  position: relative;
  appearance: none;
  outline: none;
  margin: 0 6px 0 0;
  transition: background 0.12s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px 0 rgba(28,58,57,0.11);
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .modal-close {
  position: absolute;
  right: 17px;
  top: 19px;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--secondary);
}
.cookie-modal-buttons {
  margin-top: 13px;
  display: flex;
  gap: 10px;
}

/* =============
   RESPONSIVE FLEX CONTROLS
   ============= */
@media (max-width: 900px) {
  .content-grid, .feature-grid, .shop-listing-grid, .promotion-list, .card-container, .service-list, .team-profiles {
    gap: 12px;
  }
  .footer-links nav, .values-list, .filter-controls {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .card-container, .content-grid, .team-profiles, .feature-grid, .shop-listing-grid, .promotion-list, .service-list {
    flex-direction: column;
    gap: 9px;
  }
}

/* Fix list UL in categories section */
ul {
  list-style: none;
  padding-left: 0;
}
section ul {
  margin: 13px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
section ul li {
  background: #F0F7F4;
  color: #1C3A39;
  border-radius: 12px;
  padding: 7px 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* =============
   SCROLLBAR
   ============= */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #DFE4DF;
  border-radius: 20px;
}
body::-webkit-scrollbar-track {
  background: #FFF9F2;
}

/* =============
   MISCELLANEOUS
   ============= */
::-webkit-input-placeholder { color: #9DB4AD; }
::-moz-placeholder { color: #9DB4AD; }
:-ms-input-placeholder { color: #9DB4AD; }
::placeholder { color: #9DB4AD; }

hr {
  border: 0;
  height: 1px;
  background: var(--border-light);
  margin: 32px 0;
}

/* =============
   ANIMATIONS
   ============= */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); } 
  100% { opacity: 1; transform: translateY(0); } 
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.95);} 
  100% { opacity: 1; transform: scale(1);}
}
*[data-animate], .card, .feature-grid > div, .promotion-card, .testimonial-card, .shop-card, .team-member, .service-list li {
  animation: fadeInUp 0.7s both 0.04s;
}

/* ===========
   UTILS
   =========== */
.hidden { display: none !important; }
.invisible { opacity: 0; pointer-events: none; }

/* =============
   FOCUS STYLES
   ============= */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

/* =============
   Z-INDEX
   ============= */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop { z-index: 300; }

/* ===== Fallbacks ===== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v25/JTURjIg1_i6t8kCHKm45_cJD6Q.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v20/mem8YaGs126MiZpBA-UFVZ0e.woff2') format('woff2');
}
