/* =============================================================
   CSS RESET & BASE (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: #F6F7F3;
  color: #232513;
  --primary: #2A5638;
  --primary-dark: #20432a;
  --secondary: #DEF2E0;
  --bg-section: #F6F7F3;
  --accent: #B18144;
  --accent-dark: #946019;
  --earth: #88745a;
  --green: #3c7e59;
  --border: #c4cbb7;
  --shadow: rgba(42,86,56,0.07);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--accent);
  outline: none;
}
ul, ol {
  padding-left: 1.6em;
}
li+li {
  margin-top: 0.45em;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary-dark);
}
p, li, blockquote {
  font-size: 1rem;
  color: #232513;
}
blockquote {
  font-style: italic;
  background: var(--secondary);
  padding: 14px 24px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  margin-top: 10px;
}
/* Highlight headers inside sections */
section h1, section h2, section h3 {
  margin-top: 0;
  margin-bottom: 14px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  color: #232513;
}

/* =============================================================
   CONTAINERS & RESPONSIVE LAYOUTS (FLEX-ONLY!)
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: stretch;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px -8px var(--shadow);
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 9px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

/* =============================================================
   NAVIGATION (DESKTOP & MOBILE)
   ============================================================ */
header {
  background: linear-gradient(90deg, #eef6ee 40%, #f6f7f3 100%);
  box-shadow: 0 2px 16px -8px var(--shadow);
  position: relative;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.navigation > a img {
  height: 42px;
  border-radius: 12px;
}
.navigation ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  margin: 0 28px;
}
.navigation li {
  display: flex;
}
.navigation li a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-dark);
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.14s, color 0.14s;
}
.navigation li a:hover, .navigation li a:focus, .navigation li a.active {
  background: var(--secondary);
  color: var(--accent);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff !important;
  border: none;
  padding: 11px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 11px -5px var(--shadow);
  transition: background 0.2s, transform 0.18s, box-shadow 0.19s;
  outline: none;
  gap: 9px;
  margin-left: 15px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: scale(1.042);
  box-shadow: 0 4px 20px -5px var(--shadow);
}

/* MOBILE NAV BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  z-index: 301;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 50%;
  transition: background 0.12s;
  margin-left: 8px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e5eadf;
}

@media (max-width: 940px) {
  .navigation ul {
    gap: 16px;
    margin: 0 5px;
  }
  .cta-button {
    margin-left: 7px;
    padding: 9px 18px;
    font-size: 0.96rem;
  }
}

@media (max-width: 900px) {
  .navigation ul,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 16px;
    top: 15px;
    background: var(--secondary);
    color: var(--accent-dark);
    border: 1px solid var(--border);
  }
}

/* =============================================================
   MOBILE MENU OVERLAY & ANIMATION
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #f6f8f3e8;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.63,.09,.32,.96);
  opacity: 0.99;
  box-shadow: 0 2px 38px -10px var(--shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 10px 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--accent);
  cursor: pointer;
  padding: 2px 13px;
  border-radius: 50%;
  transition: background 0.11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ecebe8;
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 95vw;
  margin-top: 18px;
  gap: 11px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
  background: #e7f0e2;
  margin-bottom: 11px;
  border-radius: var(--radius-md);
  padding: 17px 0 17px 25px;
  transition: background 0.17s, color 0.18s;
  border: 1px solid #e2e8de;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================================================
   HERO, CARDS, SECTIONS, FEATURES
   ============================================================ */
/* Section spacing and look */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-section);
  box-shadow: 0 12px 30px -19px var(--shadow);
}
.feature-grid, .services-list, .services-grid, .blog-teasers, .testimonials-slider, .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
}
.feature-grid > li, .service-card, .blog-post, .testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 21px;
  box-shadow: 0 3px 16px -7px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 230px;
  flex: 1 1 270px;
  transition: box-shadow 0.17s, transform 0.17s;
  border: 1px solid var(--border);
}
.feature-grid > li:hover, .service-card:hover, .blog-post:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px -14px var(--shadow);
  transform: translateY(-3px) scale(1.012);
}
.feature-grid img, .service-card img, .blog-post img {
  height: 47px;
  width: auto;
  margin-bottom: 8px;
}

.services-list, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 260px;
  min-width: 215px;
  margin-bottom: 20px;
  background: #fffbe9;
}

.service-price {
  display: inline-block;
  margin-top: 11px;
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  background: var(--secondary);
  padding: 3.5px 14px;
  border-radius: var(--radius-sm);
}

/* Blog teaser cards */
.blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: #fff;
  border-left: 7px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 21px 19px 21px 27px;
  min-width: 250px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.blog-post h3 {
  margin-bottom: 4px;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.92rem;
  color: var(--green);
  margin-bottom: 6px;
  align-items: center;
}
.tag {
  display: inline-block;
  padding: 2.5px 8px;
  background: #ECF7F0;
  color: var(--primary-dark);
  font-size: 0.91rem;
  border-radius: 10px;
}


/* Testimonials Card */
.testimonials-slider, .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  margin-bottom: 20px;
  background: #fafffa;
  box-shadow: 0 2px 14px -7px var(--shadow);
  border-radius: var(--radius-md);
  min-width: 230px;
  flex: 1 1 270px;
  border: 1.5px solid var(--border);
}
.testimonial-card blockquote {
  font-size: 1.04rem;
  color: #293629;
  background: none;
  border-left: 4px solid var(--primary);
  margin: 0;
  padding: 0 0 0 12px;
}
.testimonial-card footer {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--accent-dark);
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3.5px;
}
.testimonial-stars img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px #C4CBB7);
}

/* Card container patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 16px -7px var(--shadow);
  border: 1px solid var(--border);
  gap: 12px;
  padding: 21px 16px;
}

/* ======== Section grid/pattern snippets ======== */
.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;
}


/* =============================================================
   ADDITIONAL BLOCKS (ADDRESS, CONTACT, HOURS, FOOTER)
   ============================================================ */
.footer-menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 13px;
  margin-top: 6px;
}
.footer-menu a {
  color: var(--primary-dark);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-decoration: underline;
}
.address-block, .contact-shortcuts, .hours-block, .note-block, .phone-block, .mail-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232513;
}
.contact-shortcuts {
  gap: 22px;
  flex-wrap: wrap;
}
.contact-shortcut {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.contact-shortcut .cta-button {
  margin-left: 0;
  min-width: 190px;
  justify-content: flex-start;
  padding-left: 24px;
}

.hours-block {
  font-size: 0.98rem;
  color: #7C815E;
}
.note-block {
  background: #f3f6ec;
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  color: #775b2c;
  font-size: 0.97rem;
}
@media (max-width: 800px) {
  .footer-menu, .contact-shortcuts {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}

footer {
  padding: 34px 0 20px 0;
  background: linear-gradient(0deg, #eaf1ea 0%, #fafbfa 100%);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: 25px;
  box-shadow: 0 -3px 36px -15px var(--shadow);
}
footer .container {
  padding-left: 22px;
  padding-right: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =============================================================
   BUTTONS, FORMS, FOCUSED STATES
   ============================================================ */
button, [type="button"], [type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 32px;
  box-shadow: 0 2px 11px -5px var(--shadow);
  transition: background 0.22s, box-shadow 0.13s, transform 0.15s;
}
button:hover, button:focus, [type="button"]:hover, [type="button"]:focus{
  background: var(--accent-dark);
  outline: none;
  transform: scale(1.033);
  box-shadow: 0 4px 14px -2px var(--shadow);
}

/* ===================
   COOKIE CONSENT BAR
   =================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 88888;
  background: #fffef8;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 8vw 16px 8vw;
  box-shadow: 0 -3px 30px -16px var(--shadow);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232513;
  animation: banner-in 0.6s cubic-bezier(.65,.65,0,1.2);
  gap: 15px;
}
@keyframes banner-in {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 11px;
}
.cookie-consent-banner button {
  padding: 10px 22px;
  border-radius: 18px;
  background: var(--accent);
  font-weight: 600;
  color: #fff;
  margin: 0 4px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.19s, transform 0.14s;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #ecd6ae;
  color: var(--primary-dark);
}
.cookie-consent-banner button:hover, 
.cookie-consent-banner button:focus {
  background: var(--accent-dark);
  color: #fff;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #eedec2;
  color: var(--accent-dark);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(50,60,40,0.19);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalIn 0.33s ease;
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 9px 48px -14px var(--shadow);
  max-width: 420px;
  width: 96vw;
  padding: 32px 24px 28px 24px;
  position: relative;
  color: #232513;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-content-in 0.4s cubic-bezier(.63,.09,.32,.96);
}
@keyframes modal-content-in {
  from { transform: scale(1.1) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent-dark);
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .modal-close:hover {
  color: var(--primary);
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e7ecd9;
  font-size: 1rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-weight: 500;
}
.cookie-modal input[type=checkbox]:disabled + label {
  color: #31432f;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 95px;
  padding: 8px 18px;
  border-radius: 16px;
  font-weight: 600;
}
.cookie-modal .modal-actions .reject-btn {
  background: #ecd6ae;
  color: var(--accent-dark);
}
.cookie-modal .modal-actions .accept-btn {
  background: var(--accent);
  color: #fff;
}

/* =============================================================
   EXPERT TIPS & ADDITIONAL DESIGNS
   ============================================================ */
.expert-tips {
  background: #f2eee5;
  border-left: 7px solid var(--earth);
  border-radius: var(--radius-md);
  padding: 18px 23px;
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.expert-tips h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary-dark);
  font-size: 1.01rem;
  margin-bottom: 7px;
}

/* ============ RESPONSIVE DESIGN (MOBILE FIRST) ============ */
@media (max-width: 768px) {
  .content-wrapper, .container, .section, section{
    padding-left: 6px !important;
    padding-right: 6px !important;
    border-radius: 0;
  }
  .feature-grid, .services-list, .services-grid, .blog-teasers, .testimonials-slider, .testimonials-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li, .service-card, .blog-post, .testimonial-card,
  .card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    padding: 15px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  .category-tags { gap: 7px; }
  .footer-menu, .contact-shortcuts {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  header, footer {
    border-radius: 0 !important;
  }
  .cookie-consent-banner {
    padding-left: 4vw;
    padding-right: 4vw;
    font-size: 0.99rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.08rem; }
  .container { padding: 0 2px; }
  .section { padding: 15px 2px; }
  .cookie-modal {
    padding: 13px 2px 18px 6px;
    min-width: 0;
    max-width: 99vw;
  }
}

/* =============================================================
   MICRO-INTERACTIONS (HOVER, FOCUS, TRANSITIONS)
   ============================================================ */
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent);
  box-shadow: 0 2px 8px -3px var(--shadow);
}
.card, .feature-grid > li, .service-card, .blog-post, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.13s;
}
.cta-button, button {
  transition: background 0.14s, color 0.14s, box-shadow 0.19s, transform 0.13s;
}
a, .footer-menu a {
  transition: color 0.14s, background 0.12s;
}

/* Subtle button animation */
.cta-button:active, button:active {
  transform: scale(0.976);
}

/* =============================================================
   ORGANIC SHAPES AND NATURE ACCENTS
   ============================================================ */
.section {
  border-bottom-left-radius: 60px 38px;
  border-top-right-radius: 60px 38px;
  background: linear-gradient(92deg, #F6F7F3 60%, #DEF2E0 100%);
  box-shadow: 0 6px 29px -16px var(--shadow);
}
.feature-grid > li, .service-card, .blog-post, .testimonial-card, .card {
  border-radius: 38px 18px 32px 17px;
  box-shadow: 0 6px 30px -15px var(--shadow);
  border: 1px solid #e0eada;
}

/* Animating CTA buttons nature style */
.cta-button {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark) 92%);
  box-shadow: 0 2px 16px -7px var(--accent-dark);
  border: none;
}
.cta-button:focus, .cta-button:hover {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: #fff;
  outline: none;
  box-shadow: 0 4px 27px -7px var(--accent-dark);
  transform: scale(1.045);
}

/* =============================================================
   VISUAL ACCESSIBILITY (CONTRAST, FOCUS, READABILITY)
   ============================================================ */
.testimonial-card {
  background: #f3fef6;
  color: #1b2321;
}
.testimonial-card blockquote, .testimonial-card footer {
  color: #203a25;
}

/* ===========================
   CUSTOM FONT IMPORT (for Demo)
   ========================== */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
  font-display: swap;
}

/* ===========================
   END OF STYLE.CSS
   ========================== */
