/* 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;
}

html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #222a35;
}

body {
  color: #E8E9EA;
  background: linear-gradient(135deg, #203040 0%, #334a62 100%);
  min-height: 100vh;
  line-height: 1.6;
  transition: background 0.8s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  color: #4beaff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #21bbdc;
  outline: none;
}

/* FONT FACE */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #E8E9EA;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e0e7ef;
  margin-bottom: 12px;
}
strong {
  color: #ffffff;
}

ul {
  margin-left: 22px;
  margin-bottom: 20px;
  list-style: disc;
}
li {
  margin-bottom: 6px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* HEADER */
header {
  width: 100%;
  padding: 0;
  background: rgba(34,42,53,0.96);
  border-bottom: 2px solid #243547;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
}
.logo-link img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: #A3B6CB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s, text-shadow 0.2s;
  padding: 4px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #ffffff;
  text-shadow: 0 0 6px #40f8ff;
}

.cta-btn {
  background: linear-gradient(90deg, #27b4f8 0%, #56dafe 100%);
  color: #111521;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 24px;
  padding: 11px 28px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0px rgba(75, 234, 255, 0.10);
  transition: box-shadow 0.22s, background 0.2s, color 0.2s, transform 0.16s;
  margin-left: 22px;
  letter-spacing: 0.045em;
  position: relative;
  overflow: hidden;
}
.cta-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(60,255,255,0.07);
  opacity: 0;
  transition: opacity 0.13s;
  border-radius: 24px;
  pointer-events: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #36e4ee 0%, #54e3fd 100%);
  color: #15202a;
  box-shadow: 0 4px 18px 1px rgba(75, 234, 255, 0.22);
  transform: translateY(-2px) scale(1.03);
}
.cta-btn:hover:after,
.cta-btn:focus:after {
  opacity: 1;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #4beaff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 120;
  margin-left: 12px;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: rgba(28, 39, 54, 0.99);
  z-index: 200;
  box-shadow: 6px 0 42px 0 rgba(75,234,255, 0.09);
  transform: translateX(-150%);
  transition: transform 0.42s cubic-bezier(0.53, 1.47, 0.45, 0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #4beaff;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 14px 20px 8px 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #5dfcfc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 24px 0 0 0;
  padding: 0 24px;
}
.mobile-nav a {
  color: #A3B6CB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  padding: 8px 0;
  border-bottom: 1px solid #374e6a;
  transition: color 0.12s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #4beaff;
}

/* Overlay when mobile menu is open */
body.mobile-menu-active::after {
  content: '';
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,39,54,0.52);
  z-index: 120;
  pointer-events: all;
}

/* MAIN & SECTIONS */
main {
  width: 100%;
  min-height: 60vh;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.hero {
  padding-top: 36px;
  padding-bottom: 42px;
  background: linear-gradient(90deg, #203040 60%, #27425b 100%);
  border-bottom: 1.5px solid #2a4050;
  box-shadow: 0 6px 32px 1px rgba(38, 144, 251, 0.08);
}
.hero h1 {
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 0 4px 18px #29e4ff44, 0 0 2px #007cff44;
}
.hero p {
  font-size: 1.19rem;
  color: #c6e6f3;
  margin-bottom: 20px;
}

/* FEATURES, CARDS, LISTS */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, #223044 0%, #2c425d 100%);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #243647;
  border-radius: 18px;
  box-shadow: 0 3px 16px 2px rgba(80,249,255,0.07);
  padding: 24px 22px 20px 22px;
  min-width: 180px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
  border: 1.5px solid rgba(74,238,255,0.06);
}
.feature-item img {
  height: 54px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 14px #4beaff40);
  transition: filter 0.17s;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: #5dfcfc;
  letter-spacing: 0.05em;
}
.feature-item p {
  color: #c6e6f3;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 32px 2px rgba(75, 234, 255, 0.20);
  transform: translateY(-4px) scale(1.04);
  border-color: #40f8ff88;
}
.feature-item:hover img,
.feature-item:focus-within img {
  filter: drop-shadow(0 4px 18px #40f8ff) brightness(1.17);
}

/* LISTS (TIPS/FAQ/OTHER) */
.tip-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tip-list li{
  font-size: 1.06rem;
  color: #abf5ff;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 16px;
}
.faq-item {
  background: #223448;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(59,209,255,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, background 0.18s;
  border: 1.5px solid rgba(74,238,255,0.07);
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #54e3fd;
  margin-bottom: 8px;
}
.faq-item p {
  color: #e0e7ef;
}
.faq-item:hover, .faq-item:focus-within {
  background: #25354f;
  box-shadow: 0 4px 16px 0 rgba(75, 234, 255, 0.10);
  border-color: #36e4ee70;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  background: #1e2837;
  border-radius: 16px;
  margin: 32px 0 14px 0;
  box-shadow: 0 2px 16px 0 rgba(54, 231, 255, 0.08);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
}
.pricing-table th {
  background: #23364e;
  color: #40f8ff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
}
.pricing-table td {
  color: #c6e6f3;
  font-size: 1.03rem;
  border-top: 1px solid #334b64;
}
.pricing-table tr:first-of-type td, .pricing-table tr:first-of-type th {
  border-top: none;
}
.pricing-table tr:nth-child(even) td {
  background: #22304490;
}
.pricing-table .price {
  color: #5dfcfc;
  letter-spacing: 0.03em;
  font-weight: bold;
}
.pricing-notes {
  font-size: 0.94rem;
  color: #a4dbed;
}

/* SERVICES LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.service-list li {
  padding: 22px 0 10px 0;
  border-bottom: 1px solid #36577a44;
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list h3 {
  color: #5dfcfc;
  font-size: 1.13rem;
  display: flex;
  align-items: center;
  gap: 18px;
  line-height: 1.3;
}
.service-list .price {
  color: #d5fa24;
  background: #253e24;
  padding: 5px 15px;
  border-radius: 19px;
  font-size: .95rem;
  margin-left: 10px;
  font-weight: bold;
}

/* CARD STYLES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: rgba(44,62,80,0.99);
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(54,231,255,0.07);
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(75,240,250,0.15);
  transform: translateY(-4px) scale(1.03);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* LAYOUT FLEX UTILS */
.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;
}
.text-image-section > * {
  flex: 1 1 360px;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f5fafc;
  color: #202a38;
  padding: 20px;
  border-radius: 18px;
  min-width: 245px;
  max-width: 350px;
  box-shadow: 0 2px 18px 0 rgba(77,229,255,0.15);
  font-size: 1.04rem;
  transition: box-shadow 0.22s, transform 0.16s;
  border: 1.5px solid rgba(74,238,255,0.05);
}
.testimonial-card .stars {
  color: #54e3fd;
  letter-spacing: 0.04em;
  font-size: 1.35em;
  margin-bottom: 2px;
  user-select: none;
}
.testimonial-card .testimonial-name {
  color: #203040;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: .96em;
  opacity: .87;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px 2px rgba(54, 227, 255, 0.17);
  transform: translateY(-4px) scale(1.045);
  border-color: #3be2f844;
}

/* CTA SECTION */
.cta {
  padding: 44px 20px 48px 20px;
  background: linear-gradient(90deg, #203040 0%, #202a38 100%);
  box-shadow: 0 6px 22px 1px rgba(54, 203, 251, 0.07);
  margin-bottom: 60px;
  position: relative;
}
.cta .cta-btn {
  font-size: 1.15rem;
  margin-top: 14px;
  padding: 13px 36px;
}

/* CONTACT / MAP */
.contact-details, .contact-map {
  margin-bottom: 18px;
}
.contact-details p,
.contact-details a {
  font-size: 1.05rem;
  color: #abf5ff;
}
.contact-details strong {
  color: #5dfcfc;
}

.contact-map p {
  color: #d4eaff;
  font-size: 1.04rem;
}


/* LEGAL SECTIONS */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #253e57;
  border-radius: 18px;
  box-shadow: 0 2px 16px 1px rgba(80, 249, 255, 0.04);
}
.legal h1 {
  color: #ffffff;
}
.legal h2 {
  color: #5dfcfc;
}

/* THANK YOU */
.thank-you {
  padding: 60px 18px 70px 18px;
  background: linear-gradient(90deg, #223448 0%, #2e5a78 100%);
  text-align: center;
  min-height: 60vh;
}
.thank-you h1 {
  color: #5dfcfc;
  font-size: 2.2rem;
  margin-bottom: 32px;
}
.thank-you p {
  color: #e0e7ef;
  font-size: 1.12rem;
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  background: #192534;
  border-top: 2px solid #263448;
  color: #A3B6CB;
  width: 100%;
  padding: 28px 0 10px 0;
  z-index: 20;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #A3B6CB;
  font-size: .97rem;
  transition: color 0.14s;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #40f8ff;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.brand-footer img {
  width: 52px;
  height: auto;
}
.brand-footer p {
  font-size: .97rem;
  color: #535e68;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1c2834;
  color: #E8E9EA;
  border-top: 2px solid #36e4ee;
  box-shadow: 0 -2px 32px 1px rgba(80,249,255,0.11);
  width: 100vw;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 8px 20px 8px;
  animation: cookieSlideUp 0.6s cubic-bezier(0.53,1.47,0.45,0.99);
}
@keyframes cookieSlideUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1;
  font-size: 0.97rem;
  color: #E8E9EA;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  margin-left: 0;
  box-shadow: 0 0 6px 0 rgba(75,234,255,0.08);
  transition: box-shadow 0.18s, background 0.13s;
}
.cookie-banner .accept-btn {
  background: #2DE5FA;
  color: #253642;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #53fdfd;
  box-shadow: 0 2px 14px #40f8ff33;
}
.cookie-banner .reject-btn {
  background: #de3232;
  color: #fff;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #b90e0e;
  box-shadow: 0 2px 14px #fd195733;
}
.cookie-banner .settings-btn {
  background: #222f3e;
  color: #4beaff;
  border: 1px solid #4beaff;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #253a4c;
  color: #c8faff;
  border-color: #53ffff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20, 34, 48, 0.83);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .modal-content {
  background: #1e2e40;
  border-radius: 18px;
  padding: 40px 22px 22px 22px;
  width: 96vw;
  max-width: 420px;
  box-shadow: 0 8px 52px 0 rgba(75,234,255,0.18);
  position: relative;
  animation: modalAppear 0.4s cubic-bezier(0.53,1.47,0.45,0.99);
}
@keyframes modalAppear {
  from { transform: scale(0.98) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #36e4ee;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #5dfcfc;
  font-size: 1.32rem;
  margin-bottom: 20px;
}
.cookie-modal ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #e0e7ef;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-modal .toggle {
  width: 36px;
  height: 20px;
  background: #334e61;
  border-radius: 12px;
  position: relative;
  margin-left: 10px;
  transition: background 0.18s;
}
.cookie-modal .toggle[data-checked="true"] {
  background: #5dfcfc;
}
.cookie-modal .toggle-switch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(75,234,255,0.17);
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.18s, background 0.18s;
}
.cookie-modal .toggle[data-checked="true"] .toggle-switch {
  left: 16px;
  background: #253642;
}
.cookie-modal .save-btn {
  background: #2DE5FA;
  color: #192534;
  border: none;
  padding: 10px 34px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.18s;
}
.cookie-modal .save-btn:hover,
.cookie-modal .save-btn:focus {
  background: #5dfcfc;
}

/* ALIGNMENT & SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MEDIA QUERIES (Responsive) */
@media (max-width: 1100px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .feature-item, .testimonial-card {
    min-width: 210px;
  }
  .feature-grid, .testimonial-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0 !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .feature-grid, .testimonial-list, .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  .features, .section, .cta, .legal {
    padding: 32px 10px;
  }
  .hero {
    padding: 32px 10px 36px 10px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 6px;
    font-size: 0.98rem;
  }
  .brand-footer img {
    width: 40px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
  .feature-item,
  .faq-item,
  .testimonial-card,
  .card {
    padding: 13px 6px 13px 11px;
    min-width: 150px;
    font-size: 0.97rem;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
}

/* Animations for micro-interactions */
.card, .faq-item, .testimonial-card, .feature-item {
  transition: box-shadow 0.22s, background 0.18s, border-color 0.16s, transform 0.18s;
}

/* Accents: Neon lines and focus rings */
a:focus-visible, .cta-btn:focus-visible, .main-nav a:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #5dfcfc;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #36e4ee66;
}

::-webkit-input-placeholder { color: #a3b6cb; }
::-moz-placeholder { color: #a3b6cb; }
:-ms-input-placeholder { color: #a3b6cb; }
::placeholder { color: #a3b6cb; }

/* Hide scrollbars for mobile menu */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }
