/* 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.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F7F9FA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #24374B;
  background: #F7F9FA;
  min-height: 100vh;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.015em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
a {
  color: #24374B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EFC94C;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
hr {
  border: none;
  border-top: 1.5px solid #E0E4ED;
  margin: 24px 0;
}

/* BRAND COLORS & FONTS  -------------------- */
:root {
  --color-primary: #24374B;
  --color-secondary: #8BA4B0;
  --color-accent: #EFC94C;
  --color-bg: #F7F9FA;
  --color-card-bg: #FFFFFF;
  --color-text: #24374B;
  --color-subtle: #F1F3F6;
  --color-border: #E0E4ED;
  --color-danger: #C23636;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* TYPOGRAPHY  -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  text-rendering: geometricPrecision;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p, li, .text-section {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}
p {
  margin-bottom: 16px;
}
.text-section {
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
}

strong, b {
  font-weight: 600;
}

/* GEOMETRIC/STRUCTURED UI BASICS  -------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px 30px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 8px;
  }
}

/* HEADER / MAIN-NAV  -------------------- */
header {
  width: 100%;
  background: var(--color-card-bg);
  box-shadow: 0 2px 8px 0 rgba(36,55,75,0.06);
  position: relative;
  z-index: 51;
}
.header-brand {
  display: flex;
  align-items: center;
}
.header-brand img {
  height: 42px;
  width: auto;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-btn.primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 10px 32px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(239,201,76,0.11);
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  margin-left: 22px;
  text-align: center;
  display: inline-block;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #ffd76c;
  color: #24374B;
  box-shadow: 0 4px 16px 0 rgba(239,201,76,0.18);
}
.cta-btn {
  background: var(--color-primary);
  color: #fff;
  border-radius: 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 10px 28px;
  border: none;
  margin-top: 14px;
  box-shadow: 0 1.5px 8px 0 rgba(36,55,75,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 3px 16px 0 rgba(36,55,75,0.11);
}

/* MOBILE MENU  -------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border-radius: 7px;
  font-size: 1.8rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-left: 16px;
  z-index: 60;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffd76c;
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: var(--color-card-bg);
  box-shadow: -2px 0 20px rgba(36,55,75,0.10);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(0.77,0.07,0.41,0.97);
  padding: 28px 28px 0 28px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(-100vw);
  left: 0;
}
.mobile-menu-close {
  background: transparent;
  font-size: 2.2rem;
  color: var(--color-primary);
  align-self: flex-end;
  margin-bottom: 16px;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 14px 8px;
  font-family: var(--font-display);
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: none;
  transition: background 0.15s, color 0.15s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO -------------------- */
.hero {
  background: linear-gradient(120deg, #F7F9FA 80%, var(--color-secondary) 100%);
  border-bottom: 2.5px solid var(--color-accent);
}
.hero .container {
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 18px;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-secondary);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    max-width: 100%;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.32rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* STRUCTURED LAYOUTS -------------------- */
.features, .services, .about, .testimonials, .contact, .faq, .legal {
  width: 100%;
  margin: 0;
  padding: 0;
}
.features-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.features-grid {
  justify-content: flex-start;
}
.feature {
  background: var(--color-card-bg);
  border-radius: 18px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 12px 0 rgba(139,164,176,0.08);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 0 210px;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--color-subtle);
  box-shadow: 0 2px 6px 0 rgba(36,55,75,0.08);
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
  }
}

.services-list, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.service-card {
  background: var(--color-card-bg);
  border-radius: 15px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(36,55,75,0.04);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.22s, border 0.22s, transform 0.17s;
}
.service-card:hover {
  box-shadow: 0 4px 22px 0 rgba(36,55,75,0.10);
  border: 1.5px solid var(--color-accent);
  transform: translateY(-4px) scale(1.01);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .services-list, .services-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 13px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 4px 16px 0 rgba(36,55,75,0.06);
  padding: 30px 24px;
  transition: box-shadow 0.22s, border 0.18s, transform 0.15s;
}
.card:hover {
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 10px 34px 0 rgba(36,55,75,0.12);
  transform: 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: flex-start;
  }
}

.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(36,55,75,0.07);
  margin-bottom: 20px;
  color: var(--color-text);
  max-width: 640px;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 34px 0 rgba(36,55,75,0.18);
  border-color: var(--color-accent);
}
.testimonial-card p {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
  color: var(--color-primary);
  flex: 1;
  margin: 0 0 0 0;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.99rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.address-block {
  background: var(--color-subtle);
  border-radius: 10px;
  padding: 18px;
  margin: 18px 0 0 0;
  color: var(--color-primary);
  font-size: 1rem;
}
.address-block a, .footer-contact a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.18s;
}
.address-block a:hover, .footer-contact a:hover {
  color: var(--color-accent);
}

@media (max-width: 640px) {
  .testimonial-card {
    flex-direction: column;
    gap: 15px;
    padding: 14px;
  }
  .feature, .service-card {
    padding: 18px 10px 16px 10px;
  }
}

/* FAQ SECTION --------------------*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.faq-item {
  background: var(--color-card-bg);
  border-radius: 11px;
  border: 1.5px solid var(--color-border);
  padding: 18px 20px;
  transition: box-shadow 0.15s, border 0.15s;
  box-shadow: 0 2px 8px rgba(36,55,75,0.04);
}
.faq-item:hover {
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0 4px 18px rgba(36,55,75,0.10);
}
.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

/* FOOTER -------------------- */
footer {
  width: 100%;
  background: #F7F9FA;
  border-top: 2.5px solid var(--color-accent);
  padding: 30px 0 16px 0;
  margin-top: 50px;
}
footer .container {
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 37px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.footer-contact {
  padding: 8px 0 10px 0;
  color: var(--color-primary);
  font-size: 0.98rem;
}
.footer-copyright {
  color: var(--color-secondary);
  font-size: 0.92rem;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  footer .container {
    gap: 12px;
  }
}

/* LEGAL/INFORMATION PAGES ---------------*/
.legal {
  background: var(--color-card-bg);
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(36,55,75,0.04);
  border: 1.5px solid var(--color-border);
  padding: 38px 22px;
  margin: 40px 0 0 0;
}

/* COOKIES: BANNER + MODAL ---------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 18px 0 rgba(36,55,75,0.11);
  border-top: 2px solid var(--color-accent);
  z-index: 400;
  padding: 30px 16px 18px 16px;
  gap: 16px;
  font-size: 1rem;
  animation: cookieBannerIn 0.32s cubic-bezier(0.77,0.07,0.41,0.97);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 8px 0 0 0;
}
.cookie-btn {
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  background: var(--color-secondary);
  color: var(--color-primary);
  margin: 0 6px 0 0;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #C23636;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A01F1F;
}
/* Cookie Banner Responsive */
@media (max-width: 520px) {
  .cookie-banner {
    font-size: 0.98rem;
    padding: 20px 6px 10px 6px;
  }
  .cookie-banner .cookie-btns {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  display: none;
  position: fixed !important;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 500;
  background: rgba(36,55,75,0.35);
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.32s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 36px 28px 26px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 64px 0 rgba(36,55,75,0.28);
  min-width: 320px;
  max-width: 400px;
  width: 100%;
  animation: modalSlideIn 0.32s cubic-bezier(0.77,0.07,0.41,0.97);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalSlideIn {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal .modal-title {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}
.cookie-modal-close {
  font-size: 2.1rem;
  background: none;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 20px;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-subtle);
  border-radius: 8px;
  padding: 9px 16px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category span {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category .toggle {
  min-width: 40px;
  min-height: 24px;
  position: relative;
  background: #dce6ef;
  border-radius: 14px;
  display: flex;
  align-items: center;
}
.cookie-category .toggle input[type="checkbox"] {
  display: none;
}
.cookie-category .toggle .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #BCC9D0;
  transition: background 0.18s, transform 0.18s;
}
.cookie-category .toggle input[type="checkbox"]:checked + .slider {
  background: var(--color-accent);
  transform: translateX(16px);
}
.cookie-category .toggle[disabled], .cookie-category .toggle input[disabled] + .slider {
  background: #8BA4B030;
  opacity: 0.7;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

@media (max-width: 420px) {
  .cookie-modal {
    padding: 18px 6px 14px 6px;
    min-width: 0;
    max-width: 97vw;
  }
  .cookie-modal .modal-title {
    font-size: 1.05rem;
  }
  .cookie-modal .cookie-category {
    padding: 8px 7px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS -------- */
.cta-btn, .cta-btn.primary, .card, .feature, .service-card, .testimonial-card, .faq-item, .cookie-btn {
  transition: box-shadow 0.17s, border 0.13s, background 0.13s, color 0.13s, transform 0.17s;
}
a, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: background 0.13s, color 0.13s, text-decoration 0.13s;
}

/* VISUAL ANGULAR GEOMETRICITY ----------- */
h1, h2, .cta-btn, .cta-btn.primary, .service-card, .feature, .faq-item, .testimonial-card, .card {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  border-radius: 0.90em;
}

/* STRUCTURED SPACING & HIERARCHY -------- */
.section > .container > .content-wrapper > h2 {
  margin-bottom: 10px;
}
.section > .container > .content-wrapper > .features-grid, 
.section > .container > .content-wrapper > .services-grid, 
.section > .container > .content-wrapper > .services-list, 
.section > .container > .content-wrapper > .faq-list {
  margin-top: 5px;
}
.section > .container > .content-wrapper {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .service-card, .feature {
    min-width: 120px;
    max-width: 100%;
    flex: 1 0 140px;
  }
}
@media (max-width: 450px) {
  .feature, .service-card {
    max-width: 99vw;
    min-width: 0;
    padding: 10px 4px 18px 5px;
  }
}

/* UTILITIES --------------------- */
.hide-mobile { display: block; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

.hide-desktop { display: none; }
@media (max-width: 768px) { .hide-desktop { display: block; } }

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; padding:0; margin:-1px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
  background: #EEF2F5;
}
::-webkit-scrollbar-thumb {
  background: #CDD8DF;
  border-radius: 8px;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2.5px;
}

/* Remove webkit autofills */
input:-webkit-autofill,
input:-webkit-autofill:focus {
  box-shadow: 0 0 0 30px #fff inset !important;
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}

/* END OF CSS */
