/* ===================================================
   CSS RESET & BASE NORMALIZATION
=================================================== */
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;
  vertical-align: baseline;
  font-family: inherit;
  font-weight: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F6F6F6;
  color: #19324C;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1baeff;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #E0B973;
  text-decoration: underline;
}

/* ============================
   BRAND & VIBRANT ENERGETIC SETUP
============================= */
:root {
  --color-primary: #19324C;
  --color-secondary: #E0B973;
  --color-accent: #F6F6F6;
  --color-elec-green: #18E3B0;
  --color-elec-blue: #1baeff;
  --color-elec-purple: #8338ec;
  --color-elec-pink: #FF3DAF;
  --color-elec-dark: #141924;
  --color-white: #fff;
  --shadow-1: 0 2px 16px rgba(25,50,76,0.12),0 1.5px 6px rgba(227,185,115,0.08);
  --shadow-2: 0 2px 24px rgba(25,50,76,0.15),0 8px 32px rgba(24,227,176,.08);
  --radius: 14px;
  --radius-sm: 7px;
  --radius-round: 999px;
}

/* ===============================
   TYPOGRAPHY: Vibrant Energetic Bold
=============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #19324C;
  font-weight: 900;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #1baeff;
  text-shadow: 1px 2px 0 #E0B973, 0 4px 24px #1baeff88;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #8338ec;
}
h3 {
  font-size: 1.3rem;
  color: #18E3B0;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li, dl, dd, dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #141924;
}
strong, b {
  font-weight: 700;
  color: #19324C;
}

/* =====================
   CONTAINER & SECTIONS
===================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.section,
.hero,
.about,
.features,
.services,
.contact,
.confirmation,
.legal,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  min-width: 240px;
  transition: box-shadow .3s, transform .22s;
}
.card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px) scale(1.025);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: var(--shadow-2);
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 15px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .2s, background .22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-elec-blue);
  color: #fff;
}
.main-nav .cta-primary {
  background: var(--color-secondary);
  color: #19324C;
  border-radius: var(--radius-round);
  font-weight: 900;
  padding: 8px 24px;
  box-shadow: 0 .5px 8px #e0b97322;
  margin-left: 12px;
  transition: background .21s, color .21s, transform .18s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #1baeff;
  color: #fff;
  transform: scale(1.07);
}
.mobile-menu-toggle {
  display: inline-flex;
  background: var(--color-elec-blue);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: var(--radius-round);
  padding: 6px 14px;
  margin-left: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: background .2s;
}
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #19324C;
}

@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ================================
   MOBILE NAVIGATION (SIDEDRAWER)
================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,50,76,.95);
  color: #fff;
  z-index: 3000;
  overflow-y: auto;
  transition: transform .4s cubic-bezier(.8,.2,.2,1);
  transform: translateX(100%);
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 24px 0 0 22px;
  cursor: pointer;
  align-self: flex-start;
  z-index: 4001;
  transition: color .24s;
}
.mobile-menu-close:hover {
  color: #E0B973;
}
.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background .22s, color .20s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #18E3B0;
  color: #19324C;
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width:999px) {
  .main-nav {
    display: none !important;
  }
}

/* =========================
 HERO SECTION
========================== */
.hero {
  background: linear-gradient(90deg, #1baeff 0%, #18E3B0 60%, #E0B973 100%);
  color: #fff;
  box-shadow: var(--shadow-2);
  padding-top: 58px;
  padding-bottom: 58px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.hero h1 {
  color: #fff;
  text-shadow: 1.5px 3px 0 #19324C, 0 8px 60px #1baeff44;
}
.hero p {
  color: #fff;
  font-size: 1.19rem;
}
/* some energy: deco overlay */
.hero:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -60px; right: -90px;
  width: 230px; height: 230px;
  border-radius: 50%;
  background: #8338ec;
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
}
.hero .content-wrapper {
  position: relative;
  z-index: 2;
  gap: 29px;
}
/* ============================
   CTA BUTTONS
============================ */
.cta-primary {
  background: #E0B973;
  color: #19324C;
  border: none;
  border-radius: var(--radius-round);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 38px;
  cursor: pointer;
  letter-spacing:0.07em;
  margin-top: 14px;
  box-shadow: 0 4px 18px #e0b97338,0 1px 6px #1baeff33;
  transition: background .23s, color .21s, box-shadow .19s, transform .18s;
  outline: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1baeff;
  color: #fff;
  box-shadow: 0 7px 32px #1baeff43,0 2px 10px #19324c14;
  transform: translateY(-2px) scale(1.06);
}
.cta-secondary {
  background: var(--color-elec-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-round);
  font-weight: 700;
  padding: 11px 28px;
  font-size: 1rem;
  margin-top: 11px;
  box-shadow: 0 2px 6px #1baeff38;
  transition: background .21s, color .18s, transform .18s;
  outline: none;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #8338ec;
  color: #fff;
  transform: scale(1.045);
}

/* =========================
   FEATURES / LISTS
========================== */
.features ul, .features ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 10px 0;
}
.features ul li, .features ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #19324C;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
  padding: 11px 20px;
  font-size: 1rem;
  transition: box-shadow .15s, background .19s;
  border-left: 6px solid #1baeff;
}
.features ul li:hover {
  background: #E0B97322;
  border-left: 6px solid #E0B973;
  box-shadow: var(--shadow-2);
}
.features img {
  width: 32px; height: 32px;
  display: inline-block;
}

/* =======================
   TRUST BADGES
======================== */
.trust-badges {
  display: flex;
  flex-direction: row;
  gap: 18px;
  list-style: none;
  margin-bottom: 18px;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #18E3B0;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: .98rem;
  box-shadow: 0 2px 10px #1baeff14;
}
.trust-badges img {
  width: 22px; height: 22px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  background: #fff;
  box-shadow: var(--shadow-2);
  padding: 40px 20px 50px 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F6;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: 0 1.5px 10px #E0B97330;
  color: #141924;
  border: 2.5px solid #1baeff28;
  position: relative;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card p {
  color: #19324C;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #8338ec;
  letter-spacing: 0.01em;
  font-weight: 800;
}
.testimonial-card .star-rating {
  color: #E0B973;
  font-size: 1.1em;
  letter-spacing: 3px;
  font-weight: 900;
}

/* =====================
   TABLE STYLES
===================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 30px 0;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 12px #19324c17;
}
thead tr {
  background: #19324C;
  color: #fff;
}
th, td {
  padding: 14px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
tbody tr {
  border-bottom: 1.5px solid #e0b97342;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: #E0B97322;
}

/* =====================
   LEGAL SECTIONS
===================== */
.legal h1, .legal h2 {
  margin-bottom: 18px;
}
.legal ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal p {
  margin-bottom: 10px;
}

/* =====================
   LIST STYLES
===================== */
ul, ol {
  margin-left: 20px;
  margin-bottom: 11px;
}
ul li, ol li {
  margin-bottom: 7px;
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 14px 0;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-nav a,
.legal-nav a {
  color: #E0B973;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  transition: color .21s;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #1baeff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: .98rem;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: middle;
  position: relative;
  top: -1.5px;
}
.footer-social {
  display: flex;
  gap: 22px;
}
.footer-social a img {
  width: 25px;
  height: 25px;
  filter: brightness(1.1);
  transition: filter .19s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 2px 10px #E0B97355) brightness(1.4);
}

/* =====================
   DLS & FAQ
===================== */
dt {
  font-weight: 800;
  color: #E0B973;
  font-size: 1.08rem;
  margin-top: 18px;
}
dd {
  margin-left: 12px;
  color: #19324C;
}

/* =====================
   RESPONSIVE DESIGN
===================== */
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .section, .hero, .about, .features, .services, .contact, .legal, .testimonials {
    padding: 30px 8px;
    margin-bottom: 42px;
  }
  .content-grid, .card-container, .card-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.22rem; }
  .section, .hero, .about, .features, .services, .contact, .legal, .testimonials {
    padding: 22px 3vw;
    margin-bottom: 26px;
  }
  .card {
    padding: 19px 10px;
  }
  .hero { padding-top: 40px; padding-bottom: 32px; }
  .footer-contact { font-size: .93rem; }
}
@media (max-width:630px) {
  .container { padding: 0 2vw; }
  .trust-badges { flex-direction: column; gap:10px; }
  .footer-nav, .legal-nav { flex-direction: column; gap:4px; }
  .content-wrapper { gap: 7px; }
}
@media (max-width: 700px) {
  .content-grid,.card-container,.card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item { gap: 9px; }
}

/* =====================
 MICRO-INTERACTIONS/ANIMATION
===================== */
.cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .18s, background .19s, color .17s, transform .18s;
}
.card, .testimonial-card {
  transition: box-shadow .23s, transform .19s;
}
.card:active, .testimonial-card:active {
  transform: scale(.99);
}

/* =====================
   FORM STYLES (if needed)
===================== */
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  border: 1.5px solid #1baeff66;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 1rem;
  margin-bottom: 15px;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 6px #1baeff11 inset;
  transition: border .19s, box-shadow .13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #E0B973;
  box-shadow: 0 2px 18px #E0B97333;
}
button, input[type="submit"] {
  font-family:'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-round);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #1baeff13;
}

/* =====================
   COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #19324C;
  box-shadow: 0 -2px 24px #19324c28;
  padding: 17px 26px 17px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 9000;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  gap: 16px;
  animation: bannerdrop .5s;
}
@keyframes bannerdrop {
  0% {transform:translateY(80px); opacity:0;}
  90%{transform:translateY(-6px) scale(1.03);opacity:1;}
  100%{transform:translateY(0); opacity:1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.cookie-banner button {
  padding: 9px 19px;
  border-radius: var(--radius-round);
  font-weight: 700;
  border: none;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  background: #1baeff;
  color: #fff;
  transition: background .15s, color .15s, transform .16s;
  outline: none;
}
.cookie-banner button.accept {
  background: #18E3B0;
}
.cookie-banner button.reject {
  background: #FF3DAF;
}
.cookie-banner button.settings {
  background: #E0B973;
  color: #19324C;
}
.cookie-banner button:hover {
  filter: brightness(1.15);
  transform: scale(1.07);
}

/* ========================
   COOKIE BANNER MODAL
======================== */
.cookie-modal-overlay {
  position:fixed;
  z-index: 9999;
  left:   0; top: 0;
  width: 100vw; height: 100vh;
  background:rgba(25,50,76,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .4s;
}
@keyframes fadein { from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  color: #19324C;
  border-radius: var(--radius);
  padding:36px 26px 28px 26px;
  max-width:98vw;
  width: 410px;
  box-shadow: var(--shadow-2);
  font-size:1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: popin .45s;
}
@keyframes popin {
  0% {transform:scale(0.7) translateY(60px); opacity:0;}
  85%{transform:scale(1.05) translateY(-5px);opacity:1;}
  100%{transform:scale(1) translateY(0); opacity:1;}
}
.cookie-modal h2 {
  font-size:1.21rem;
  color: #18E3B0;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-weight: 700;
  color: #19324C;
}
.cookie-toggle {
  background: #E0B973;
  border: 2.5px solid #1baeff80;
  border-radius: var(--radius-round);
  width: 50px;
  height: 26px;
  position: relative;
  display: inline-block;
  transition: background .15s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-toggle .slider {
  position: absolute; left:2px; top:2px;
  height: 22px; width: 22px;
  border-radius:var(--radius-round);
  background: #fff;
  box-shadow: 0 1.5px 7px #18E3B033;
  transition: transform .18s, background .17s;
}
.cookie-toggle input:checked + .slider {
  transform: translateX(24px) scale(1.04);
  background: #1baeff;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  justify-content:flex-end;
}
.cookie-modal button {
  padding: 9px 17px;
  font-size: 0.98rem;
  border: none;
  border-radius: var(--radius-round);
  background: #18E3B0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background .13s, color .13s, transform .13s;
}
.cookie-modal button.reject {
  background: #FF3DAF;
}
.cookie-modal button.settings {
  background: #E0B973;
  color: #19324C;
}
.cookie-modal button.close {
  background: #1baeff;
}
.cookie-modal button:hover {
  filter: brightness(1.11);
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .cookie-modal {width:96vw;padding:19px 7px;}
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 13px 4vw 20px 4vw;
    font-size: .93rem;
  }
}

/* =====================
   MISC/ELEMENTS
===================== */
::-webkit-input-placeholder { color: #7da5d9; opacity:1; }
::-moz-placeholder { color: #7da5d9; opacity:1; }
:-ms-input-placeholder { color: #7da5d9; opacity:1; }
::placeholder { color: #7da5d9; opacity:1; }

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}
hr {
  border: none;
  border-top: 2px solid #E0B973;
  margin: 26px 0;
  width: 80%;
}

/* ===============================
   VISUAL CUSTOM ENERGY EFFECTS
=============================== */
.section, .card, .testimonial-card, .cookie-modal {
  border: 2.5px solid #1baeff18;
}
.section {
  box-shadow: 0 2.5px 28px #1baeff13, 0 1.5px 12px #8338ec11;
}
.features ul li:before {
  content:'⚡';
  margin-right: 5px;
  color:#1baeff;
  font-size: 1.1em;
  font-weight:900;
  vertical-align: middle;
  display: inline-block;
}
.features ul li img {
  margin-right: 5px;
}

/* ===============================
   SCROLLBAR STYLE (Energy Theme)
=============================== */
::-webkit-scrollbar { width: 11px; background: #F6F6F6; }
::-webkit-scrollbar-thumb { background: #E0B973; border-radius: 15px; }
::-webkit-scrollbar-thumb:hover { background: #1baeff; }

/* ===============================
  PRINT STYLE OPTIMIZATION
=============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {display: none !important;}
  .container {padding:0;}
  .section, .about, .services, .features, .cofirmation, .legal, .testimonials, .contact {padding:0 0 16px 0; box-shadow:none; border:none;}
  a {text-decoration: underline !important;}
}
