/* =======================
   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,
main, 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;
}
html {
  line-height: 1.25;
  scroll-behavior: smooth;
}
body {
  background: #F2F7F6;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23545C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8FC6B7;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.3em;
  margin: 16px 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  background: none;
}
::selection {
  background: #ffefd3;
  color: #23545C;
}

/* ================
   BASE VARIABLES
   ================ */
:root {
  --primary: #23545C;
  --accent: #8FC6B7;
  --accent2: #82BBAF;
  --secondary: #F2F7F6;
  --white: #FFFFFF;
  --black: #222;
  --electric-green: #2FEBA6;
  --electric-violet: #8A5CF6;
  --electric-orange: #FF7654;
  --electric-yellow: #FFE75A;
  --max-container-width: 1180px;
  --radius-card: 20px;
  --radius-btn: 28px;
  --shadow: 0 4px 20px 0 rgba(42,66,73,0.06), 0 1.5px 4px 0 rgba(42,66,73,0.13);
  --shadow-card: 0 4px 16px 0 rgba(33,62,89,0.14),0 1.5px 4px 0 rgba(33,62,89,0.18);
  --shadow-btn: 0 1.5px 16px 0 rgba(130,188,175,0.12);
  --transition: 0.22s cubic-bezier(.6,-0.3,.45,1.45);
  --font-headings: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ====================
   MAIN CONTAINER & LAYOUTS
   ==================== */
.container {
  width: 100%;
  max-width: var(--max-container-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.section:last-child {
  margin-bottom: 0;
}

/* Dynamic hero layout (/ and others) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0;
}

/*========================
   TYPOGRAPHY & HEADINGS
  =======================*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.8rem;
  background: var(--primary);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.subtitle {
  font-family: var(--font-headings);
  color: var(--electric-orange);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  color: var(--electric-violet);
}
h3 {
  font-size: 1.25rem;
  color: var(--primary);
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  font-size: 1.08rem;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.68;
}
blockquote {
  font-size: 1.15rem;
  font-style: italic;
  border-left: 5px solid var(--electric-green);
  color: var(--primary);
  margin: 0 0 10px 0;
  padding-left: 18px;
}
strong, b {
  color: var(--electric-orange);
  font-weight: 700;
}

/* ===================
   NAVIGATION & HEADER
   =================== */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(33,62,89,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 84px;
  min-height: 66px;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: var(--font-headings);
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 2px;
  border-radius: 6px;
  color: var(--primary);
  transition: color var(--transition), background var(--transition);
}
nav a.cta-btn {
  background: var(--electric-green);
  color: var(--primary);
  border-radius: var(--radius-btn);
  padding: 11px 28px;
  box-shadow: var(--shadow-btn);
  font-size: 1.13rem;
  font-weight: bold;
  margin-left: 10px;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
nav a.cta-btn:hover, nav a.cta-btn:focus {
  background: var(--electric-violet);
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(138,92,246,0.13);
}
nav a:hover, nav a:focus {
  color: var(--electric-orange);
  background: rgba(255,118,84,0.08);
}
.mobile-menu-toggle {
  display: none;
  background: var(--electric-green);
  color: var(--primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.55rem;
  border: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition);
  margin-left: 16px;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--electric-orange);
  color: #fff;
}

/* =============
   MOBILE NAV
  ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  box-shadow: 0 12px 32px 0 rgba(35,84,92,0.17);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 42px;
  padding-right: 36px;
  padding-bottom: 42px;
  transform: translateX(100vw);
  transition: transform 0.45s cubic-bezier(.7,.3,.47,1.21);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--electric-violet);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 32px;
  border: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--electric-green);
  color: var(--primary);
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: var(--font-headings);
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 14px 0 14px 6px;
  border-radius: 8px;
  display: block;
  transition: background var(--transition), color var(--transition);
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-green);
  color: var(--primary);
}

/* =========================
   HERO/MAIN HEADERS (Index)
   ========================= */
main section:first-child {
  background: linear-gradient(94deg,var(--electric-green) 4%, var(--white) 94%);
  box-shadow: 0 8px 36px 0 rgba(35,84,92,0.09);
  margin-top: 20px;
  margin-bottom: 60px;
  border-radius: var(--radius-card);
}

/* ==========
   FEATURE GRID (/)
   ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-card {
  flex: 1 0 220px;
  min-width: 200px;
  max-width: 260px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 22px 22px 22px;
  margin-bottom: 20px;
  border: 2.5px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card img {
  height: 44px;
  width: 44px;
  margin-bottom: 3px;
  filter: drop-shadow(0 3px 8px rgba(130,188,175,0.13));
}
.feature-card:hover, .feature-card:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 14px 32px 0 rgba(138,92,246,0.14);
  border-color: var(--electric-orange);
  z-index: 2;
}

/* ===========
   SERVICE LIST (services.html)
   =========== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.service-item {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 22px 22px 22px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  border-left: 4.5px solid var(--electric-violet);
  border-bottom: 2px solid var(--accent2);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-item:hover, .service-item:focus-within {
  border-left-color: var(--electric-orange);
  box-shadow: 0 8px 32px 0 rgba(255,118,84,0.13);
}
.service-item strong {
  font-size: 1.11rem;
  color: var(--electric-green);
  font-family: var(--font-headings);
  letter-spacing: 0.03em;
}

/* ===========
   FEATURE BOXES (about)
   =========== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =================
   TESTIMONIAL CARDS
   ================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 22px 0 rgba(35,84,92,0.08);
  padding: 20px 26px;
  margin-bottom: 20px;
  max-width: 700px;
  border-left: 5px solid var(--electric-green);
  color: #23282e;
  font-family: var(--font-body);
  line-height: 1.5;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card blockquote {
  border: none;
  color: var(--primary);
  padding-left: 0;
  margin: 0;
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: var(--electric-orange);
  font-family: var(--font-headings);
  font-size: 1.02rem;
}
.testimonial-card:hover {
  box-shadow: 0 9px 38px 0 rgba(47,235,166,0.13);
  border-left-color: var(--electric-violet);
}

.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.tips-grid ul {
  background: var(--accent);
  padding: 22px 20px 18px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(130,188,175,0.09);
}
.tips-grid li {
  margin-bottom: 14px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
}
.tips-grid li b {
  color: var(--electric-orange);
  font-weight: bold;
}

.callout {
  background: linear-gradient(95deg,var(--electric-green) 30%, #fafefe 100%);
  color: var(--primary);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 18px 0 rgba(47,235,166,0.07);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 500;
}

/* ===== COLS / FLEX SECTIONS (MANDATORY) ====== */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/*=============
   BUTTONS
   =============*/
.cta-btn, .button, .btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px 12px 32px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-btn);
  background: var(--electric-green);
  color: var(--primary);
  border: none;
  outline: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-btn);
  min-width: 130px;
}
.cta-btn:hover, .button:hover, .btn:hover, .cookie-btn:hover,
.cta-btn:focus, .button:focus, .btn:focus, .cookie-btn:focus {
  background: var(--electric-orange);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 25px rgba(255,118,84,0.22);
}
.cookie-btn.secondary {
  background: var(--electric-violet);
  color: #fff;
}
.cookie-btn.secondary:hover {
  background: var(--electric-yellow);
  color: var(--primary);
}
.cookie-btn.text {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 0 0 1px var(--accent2);
}
.cookie-btn.text:hover {
  background: var(--accent2);
}
button:disabled, .cta-btn[aria-disabled=true] {
  opacity: .58;
  pointer-events: none;
}

/* ======
   FORMS (minimal)
   ====== */
input, textarea {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--accent2);
  background: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(130,188,175,0.08);
}
input:focus, textarea:focus {
  border-color: var(--electric-green);
  outline: 2px solid var(--electric-green);
}
label {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* =============
   FOOTER
   ============= */
footer {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  padding: 38px 0 15px 0;
  margin-top: 22px;
  box-shadow: 0 -3px 20px 0 rgba(35,84,92,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
footer nav {
  gap: 16px;
}
footer nav a {
  color: #ffefd3;
  font-size: 1.04rem;
  font-family: var(--font-body);
  transition: color var(--transition);
  padding: 2px 0;
  margin: 0 6px;
}
footer nav a:hover {
  color: var(--electric-green);
}
footer p {
  font-size: 0.97rem;
  color: #fff;
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--electric-violet);
  color: #fff;
  box-shadow: 0 -5px 40px 0 rgba(35,84,92,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 16px;
  font-size: 1.04rem;
  font-family: var(--font-body);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition);
}
#cookie-consent-banner.show {
  opacity: 1;
  pointer-events: auto;
}
#cookie-consent-banner p {
  color: #fff;
  margin: 0 22px 0 0;
  line-height: 1.38;
  max-width: 500px;
}
#cookie-consent-banner .cookie-btn {
  margin: 0 6px;
}

/* Cookie Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,84,92,0.80);
  z-index: 4000;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn .31s cubic-bezier(0.58, -0.28, 0.39, 1.33);
}
#cookie-settings-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 4px 38px 0 rgba(35,84,92,0.23);
  padding: 36px 30px 20px 30px;
  min-width: 274px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: bounceIn .38s var(--transition);
}
.cookie-modal-content h3 {
  font-size: 1.24rem;
  color: var(--electric-violet);
  font-family: var(--font-headings);
  margin-bottom: 15px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
  font-family: var(--font-body);
}
.cookie-category .cookie-toggle {
  width: 35px;
  height: 18px;
  background: var(--accent2);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  margin-left: 6px;
}
.cookie-category .cookie-toggle[data-enabled="true"] {
  background: var(--electric-green);
}
.cookie-category .cookie-toggle-circle {
  position: absolute;
  left: 2px; top: 2.5px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(35,84,92,0.11);
  transition: left var(--transition);
}
.cookie-category .cookie-toggle[data-enabled="true"] .cookie-toggle-circle {
  left: 19px;
}
.cookie-modal-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 17px;
  background: var(--electric-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-close:hover {
  background: var(--electric-green);
  color: var(--primary);
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes bounceIn {
  0% { transform: scale(0.72) translateY(40px); opacity: 0; }
  64% { transform: scale(1.07) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}

/* ===========
   RESPONSIVE
   =========== */
@media (max-width: 1180px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 16px;
  }
  nav {
    gap: 15px;
  }
  .feature-grid {
    gap: 18px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 26px 5px; }
  .feature-grid { gap: 12px; }
  .feature-card,
  .service-item {
    min-width: 90vw;
    max-width: 99vw;
    padding: 19px 8px 17px 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px 18px 12px;
    font-size: 1rem;
  }
  .cookie-modal-content { padding: 24px 9px 16px 11px; }
  footer .container { padding: 0 8px; }
}
@media (max-width: 700px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .card,
  .feature-card,
  .service-item
  { margin-bottom: 22px; }
}
@media (max-width: 640px) {
  header .container {
    flex-direction: row;
    gap: 7px;
    height: 62px;
    min-height: 56px;
    padding-left: 6px;
    padding-right: 3px;
  }
  nav { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
  }
  main section, .section, main section:first-child {
    padding: 18px 2px 14px 2px;
    margin-bottom: 36px;
    margin-top: 5px;
    border-radius: 11px;
  }
}
@media (max-width: 420px) {
  h1, .subtitle { font-size: 1.2rem; }
  .cta-btn, .button, .btn { padding:8px 17px;font-size:1rem; }
  .feature-card,
  .service-item { border-radius: 12px; padding:10px 3px 10px 7px; }
  .testimonial-card { border-radius: 10px; padding:6px 2px 9px 5px; }
}

/*
========================================
VIBRANT ENERGETIC FINISHING TOUCHES
========================================
*/
.section {
  box-shadow: 0 7px 32px 0 rgba(255,231,90,0.03);
  border: 1.5px solid var(--accent2);
}
.card,
.feature-card,
.service-item,
.testimonial-card {
  transition:box-shadow var(--transition),border-color var(--transition),transform var(--transition);
}
.card:hover,
.feature-card:focus-within,
.service-item:hover,
.testimonial-card:hover {
  box-shadow:0 12px 40px 0 rgba(255,231,90,0.14),0 5px 18px 0 rgba(35,84,92,0.12);
  border-color:var(--electric-yellow);
  transform: scale(1.018);
  z-index:2;
}
.cta-btn {
  background: linear-gradient(94deg, var(--electric-orange) 20%, var(--electric-green) 100%);
  color: #fff;
  font-size: 1.15rem;
  border: none;
  border-radius: 99px;
  padding: 13px 34px;
  font-family: var(--font-headings);
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 26px 0 rgba(35,84,92,0.11);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(92deg, var(--electric-violet) 30%, var(--electric-orange) 80%);
  color: #fff;
  transform: scale(1.05);
}

/*  =======================
    HIDE TEXT FOR ICON IMGS
    ======================= */
[alt*="Puhelin"], [alt*="Email"] {
  vertical-align: middle;
  height: 1.35em;
  width: 1.35em;
  margin-right: 7px;
  margin-bottom: -2px;
}

/*  =======================
    MISC
    ======================= */
.section .container { padding: 0; }
main { margin-bottom: 70px; }
.content-wrapper.text-section a {
  font-weight: bold;
  padding: 0 2px;
  border-radius: 4px;
  background: linear-gradient(89deg, var(--electric-yellow) 7%, var(--accent2) 120%);
  color: var(--primary);
  box-shadow: 0 1.5px 7px 0 rgba(255,231,90,0.06);
  transition: background var(--transition), color var(--transition);
}
.content-wrapper.text-section a:hover, .content-wrapper.text-section a:focus {
  background: var(--electric-orange);
  color: #fff;
}
/* Hide main nav on mobile */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}/* End of CSS */
