/* === CSS RESET & BASE === */
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;
}
html {
  line-height: 1.15;
  scroll-behavior: smooth;
}
body {
  background: #F6F8FA;
  color: #232A33;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #35A2A9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #232A33;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* === BRAND FONTS === */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'),
       url(https://fonts.gstatic.com/s/robotoslab/v13/BngMUXZYTXPIvIBgJJSb6ufN5qU.woff2) format('woff2');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular'),
       url(https://fonts.gstatic.com/s/opensans/v27/mem8YaGs126MiZpBA-U1Ug.woff2) format('woff2');
  unicode-range: U+000-5FF;
}

/* === COLORS (fallbacks provided) === */
:root {
  --primary: #232A33;
  --secondary: #35A2A9;
  --accent: #F6F8FA;
  --yellow: #FFE066;
  --magenta: #FF6F91;
  --green: #12D188;
  --blue: #40B4F7;
  --purple: #9B59B6;
  --white: #FFFFFF;
  --black: #15181E;
}

/* === SECTION SPACING & LAYOUT (MANDATORY) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 3px 16px rgba(53,162,169,0.08);
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 2px 8px rgba(62,172,210,0.09);
  transition: box-shadow 0.16s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(53,162,169,0.19),0 2px 8px rgba(25,28,32,0.11);
  transform: translateY(-3px) scale(1.025) rotate(-1.5deg);
}
.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;
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0px 2px 14px rgba(62,172,210,0.15);
  font-size: 18px;
  color: var(--primary);
  position: relative;
  min-width: 0;
  flex: 1 1 320px;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === FLEX ADAPTATIONS FOR BRAND LAYOUT === */
.main-nav, .footer-nav, .footer-col {
  display: flex;
  align-items: center;
  gap: 20px;
}
.content-wrapper > * + * {
  margin-top: 0;
}

/* === PLAYFUL DYNAMIC DESIGN === */

/* Headings & Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.2em;
}
h1 {
  font-size: 2.75rem;
  color: var(--primary);
  line-height: 1.1;
  text-shadow: 1px 3px 0 var(--yellow), 0 3px 12px rgba(53,162,169,0.05);
}
h2 {
  font-size: 2rem;
  color: var(--secondary);
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  color: var(--magenta);
}
h4 {
  font-size: 1.125rem;
}
p, li, address, label, input, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--primary);
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--secondary);
}

ul li {
  margin-bottom: 8px;
}
ul li:last-child {
  margin-bottom: 0;
}


/* Fun & Animated Accents */
h1, h2 { position: relative; }
h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 8px;
  border-radius: 5px 20px 20px 5px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  bottom: -12px;
  z-index: 0;
  animation: playful-bounce 1.8s infinite cubic-bezier(.19,1,.22,1);
  opacity: 0.45;
}
@keyframes playful-bounce {
  0%, 100% { transform: translateY(0) scaleX(1.0);    opacity: 0.45; }
  20% {     transform: translateY(2px) scaleX(1.07);  opacity: 0.7; }
  40% {     transform: translateY(-3px) scaleX(1.1);  opacity: 0.85; }
  70% {     transform: translateY(-2px) scaleX(0.99); opacity: 0.35; }
}

/* Featured Grid for Cards/Features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(255,206,102,0.10), 0 2px 16px rgba(53,162,169,0.08);
  padding: 24px 20px 24px 20px;
  min-width: 250px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s cubic-bezier(.48,.13,.42,.97), box-shadow 0.18s;
  border-left: 8px solid var(--secondary);
  /* Playful shadow */
}
.feature-grid > div:hover {
  transform: translateY(-5px) scale(1.035) rotate(-2.2deg);
  box-shadow: 0 10px 44px rgba(255,111,145,0.23), 0 2px 22px rgba(53,162,169,0.22);
  z-index: 3;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  transition: filter 0.2s, transform 0.22s;
  margin-bottom: 12px;
}
.feature-grid > div:hover img {
  filter: brightness(1.03) drop-shadow(0 2px 4px var(--magenta));
  transform: scale(1.12) rotate(-8deg);
}

/* === BUTTONS === */
.cta, .feature-grid a, .content-wrapper a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  border-radius: 30px;
  font-family: 'Roboto Slab', 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 30px;
  margin-top: 8px;
  margin-bottom: 8px;
  background: linear-gradient(88deg, var(--yellow) 0%, var(--secondary) 100%);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(62,172,210,0.16);
  border: 2px solid var(--secondary);
  outline: none;
  transition: background 0.26s cubic-bezier(.68,-0.2,.22,1.2), color 0.14s, box-shadow 0.13s, border 0.2s;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.cta.primary, .content-wrapper a.cta.primary {
  background: linear-gradient(88deg, var(--magenta) 0%, var(--secondary) 89%);
  color: var(--white);
  border: 2px solid var(--magenta);
}
.cta.primary:hover, .content-wrapper a.cta.primary:hover {
  background: var(--secondary);
  color: var(--yellow);
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 16px var(--magenta), 0 2px 12px var(--yellow);
  transform: translateY(-1.5px) scale(1.08) rotate(2deg);
}
.cta:active {
  box-shadow: 0 2px 8px rgba(255,111,145,0.18);
}
.cta:focus {
  outline: 3px dashed var(--yellow);
}
.feature-grid a {
  background: var(--green);
  color: var(--primary);
  border-color: var(--green);
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 1rem;
}

/* === HEADER/NAVIGATION === */
header {
  background: var(--white);
  width: 100%;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(62,172,210,0.06);
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.main-nav a {
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  position: relative;
  transition: background 0.19s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.logo {
  height: 42px;
  margin-right: 30px;
}

/* === BURGER MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--magenta);
  color: var(--white);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: 19px;
  z-index: 110;
  transition: background 0.2s;
  border: none;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--yellow);
  color: var(--magenta);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(36,42,52,0.92);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,.9,.54,1.2);
  z-index: 2800;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--magenta);
  color: var(--white);
  border-radius: 90px;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  align-self: flex-start;
  margin: 20px 27px 0 0;
  transition: background 0.2s, color 0.2s;
  border: none;
  position: relative;
  z-index: 2820;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--yellow);
  color: var(--magenta);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  background: var(--white);
  padding: 76px 22px 24px 22px;
  height: 100vh;
  border-radius: 44px 0 0 44px;
  box-shadow: -3px 4px 32px rgba(53,162,169,0.18);
}
.mobile-nav a {
  color: var(--secondary);
  font-size: 1.12rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 2px dotted var(--accent);
  background: none;
  border-radius: 18px;
  transition: background 0.14s, color 0.15s;
  margin-bottom: 5px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--magenta);
  color: var(--white);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 830px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === HERO SECTIONS (playful, energetic) === */
section:first-of-type {
  padding-top: 32px;
  padding-bottom: 38px;
  min-height: 320px;
  background: linear-gradient(96deg, var(--yellow) 0%, var(--accent) 100%);
  box-shadow: 0 2px 16px rgba(255,111,145,0.04);
  border-radius: 0 0 38px 38px;
}
section:first-of-type .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}
section:first-of-type h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 12px;
  margin-top: 0px;
  text-shadow: 2px 3px 0 var(--yellow);
}
section:first-of-type p {
  font-size: 1.18rem;
}

/* === TESTIMONIALS === */
.testimonial-card {
  box-shadow: 0 3px 16px var(--yellow), 0 2px 14px var(--magenta), 0 2px 12px var(--blue);
  background: var(--white);
  border-left: 6px solid var(--magenta);
  margin-bottom: 20px;
  color: var(--primary);
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  margin-bottom: 0.5em;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Roboto Slab', serif;
  color: var(--yellow);
  font-size: 2.5rem;
  position: absolute;
  left: 18px;
  top: 2px;
  z-index: 1;
  opacity: 0.35;
}

/* === FORMS & INPUTS === */
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
  width: 100%;
  max-width: 370px;
  background: var(--accent);
  border: 2px solid var(--secondary);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 1.1em;
  margin-top: 7px;
  margin-bottom: 15px;
  outline: none;
  transition: border 0.16s, box-shadow 0.16s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 1px 10px var(--yellow), 0 1px 4px var(--magenta);
}
label {
  font-weight: 700;
  margin-top: 10px;
}
::placeholder {
  color: #91A1AE;
  font-style: italic;
  opacity: 1;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  padding: 50px 0 30px 0;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 18px;
}
.footer-col address {
  color: var(--accent);
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-nav {
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--yellow);
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
  border-radius: 13px;
  padding: 3px 10px;
  transition: color 0.16s, background 0.15s;
}
.footer-nav a:hover {
  color: var(--magenta);
  background: var(--accent);
}
.logo-mark {
  height: 44px;
}
.social-links {
  display: flex;
  gap: 17px;
  margin-top: 2px;
}
.social-links a img {
  width: 34px;
  height: 34px;
  transition: transform 0.13s;
}
.social-links a:hover img {
  transform: scale(1.08) rotate(2deg);
  filter: brightness(1.2) drop-shadow(2px 4px 8px var(--magenta));
}

/* === MISC LAYOUTS & CARDS === */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 20px;
}
ul, ol {
  padding-left: 24px;
}

/* Utility for Polished Playfulness */
.playful-badge {
  display: inline-block;
  padding: 7px 22px;
  background: var(--yellow);
  color: var(--magenta);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.1em;
  border-radius: 16px 4px 14px 9px;
  box-shadow: 0 2px 9px rgba(255,111,145,0.16);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
    padding: 0 10px;
  }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 900px) {
  .container { max-width: 770px; }
  .content-wrapper { gap: 13px; }
  section {
    padding: 32px 7px;
  }
  .section {
    padding: 27px 10px;
    margin-bottom: 40px;
  }
  .feature-grid {
    gap: 15px;
  }
  .footer-col { gap: 8px; }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.18rem;}
  .content-wrapper,.footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-col { margin-bottom: 10px; }
}
@media (max-width: 540px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.27rem; }
  .section { padding: 18px 5px; }
  .logo { height: 30px; }
  .main-nav { gap: 3px; padding: 6px 0; }
  .feature-grid > div { padding: 12px 5px; }
  .cta, .feature-grid a, .content-wrapper a.cta { font-size: 1rem; padding: 10px 15px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--white);
  border-top: 4px solid var(--magenta);
  box-shadow: 0 -3px 20px rgba(53,162,169,0.13);
  z-index: 5000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 26px 16px 22px 16px;
  transition: transform 0.45s cubic-bezier(.68,-0.5,.32,1.5), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 240px;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0;
  margin-right: 12px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Roboto Slab', Arial, sans-serif;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--accent);
  padding: 9px 22px;
  font-size: 1.1em;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
  min-width: 100px;
  cursor: pointer;
  transition: filter 0.2s, background 0.2s, color 0.19s;
  outline: none;
}
.cookie-banner button.settings {
  background: var(--magenta);
  color: var(--yellow);
}
.cookie-banner button.accept {
  background: var(--green);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: var(--blue);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  filter: brightness(1.15) drop-shadow(0 2px 2px var(--yellow));
  outline: 3px solid var(--magenta);
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,42,52,0.79);
  z-index: 8000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: var(--white);
  border-radius: 28px;
  padding: 38px 25px 30px 25px;
  box-shadow: 0 3px 60px var(--yellow), 0 3px 22px var(--magenta);
  min-width: 310px;
  min-height: 220px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 8100;
  transform: translateY(25px) scale(0.95);
  opacity: 0;
  transition: transform 0.2s, opacity 0.18s;
}
.cookie-modal-overlay.active .cookie-modal {
  transform: translateY(0) scale(1.00);
  opacity: 1;
}
.cookie-modal h3 {
  color: var(--secondary);
  margin-bottom: 0.6em;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
}
.cookie-modal .category-label {
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--magenta);
  margin-right: 8px;
}
.cookie-modal input[type="checkbox"],
.cookie-modal input[type="radio"] {
  width: 20px; height: 20px;
  accent-color: var(--secondary);
  margin-right: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal button {
  font-family: 'Roboto Slab';
  background: var(--secondary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  padding: 8px 16px;
  min-width: 80px;
  cursor: pointer;
}
.cookie-modal button.close {
  background: var(--magenta);
  color: var(--yellow);
  margin-left: auto;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  filter: brightness(1.2);
}

/* === MISC MICRO-INTERACTIONS === */
.feature-grid > div:hover,
.card:hover,
.cta:hover {
  animation: playful-wiggle 0.4s 1 linear alternate;
}
@keyframes playful-wiggle {
  10% { transform: rotate(-1.2deg) scale(1.04); }
  50% { transform: rotate(1.8deg) scale(0.99); }
  80% { transform: rotate(-1deg) scale(1.03); }
  100% { transform: rotate(0deg) scale(1); }
}

/* === Z-INDEX LAYERING === */
header { z-index: 120; }
.main-nav { z-index: 130; }
.mobile-menu { z-index: 2800; }
.cookie-banner { z-index: 5000; }
.cookie-modal-overlay { z-index: 8000; }

/* === A11Y: FOCUS VISIBLE === */
:focus-visible {
  outline: 4px dashed var(--magenta);
  outline-offset: 3px;
}

/* === PRINT STYLES (minimal) === */
@media print {
  header, .main-nav, .footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cta { display:none !important; }
  section, article, main, .content-wrapper { background: #fff !important; color: #232A33 !important; box-shadow: none !important; }
}

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