/* RESET & BASE TYPOGRAPHY */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F7FA;
  color: #20315B;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: #20315B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #60B6A6;
  outline-offset: 2px;
}
strong, b {
  font-weight: 700;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

p, ul, ol, li, table, th, td, textarea, input, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #20315B;
}

/* CONTAINERS & SECTIONS */
.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 32px rgba(96,182,166,.09);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section, .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
  .content-wrapper, .features-grid {
    gap: 16px;
  }
}

/* PLAYFUL COLOR PALETTE */
:root {
  --primary: #20315B;
  --secondary: #60B6A6;
  --accent: #F3F7FA;
  --yellow: #FFE766;
  --pink: #F5587B;
  --blue: #6B7FFC;
  --green: #4CD964;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(32,49,91,0.06);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.logo img {
  height: 40px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #20315B;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background .18s, color .18s;
}
nav ul li a:hover,
nav ul li a:focus {
  color: #fff;
  background: var(--secondary);
}

.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 1.125rem;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(96,182,166,0.14);
  transition: background .18s, color .18s, transform .15s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
.btn-secondary {
  background: var(--yellow);
  color: #20315B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(1.5deg);
}
@media (max-width: 992px) {
  nav ul {
    gap: 4px;
  }
  nav .btn-primary {
    margin-left: 0;
  }
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--yellow);
  color: #20315B;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  padding: 8px 14px;
  margin-left: 10px;
  position: relative;
  z-index: 1101;
  box-shadow: 0 3px 10px rgba(245,88,123,0.10);
  transition: background .15s, box-shadow .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,88,123,0.17);
}
@media (max-width: 980px) {
  nav ul, nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(32,49,91,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.4,1.7,.3,1), background .1s;
  display: flex;
  flex-direction: column;
  z-index: 1200;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  background: #fff;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--pink);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  margin: 16px 16px 0 0;
  padding: 8px 14px;
  box-shadow: 0 3px 10px rgba(245,88,123,.12);
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--yellow);
  color: #20315B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 36px 36px 36px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #20315B;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 8px;
  transition: background .16s, color .18s, padding .22s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  padding-left: 16px;
}
/* =============== HERO =============== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 75%);
  color: #20315B;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 3px 48px rgba(107,127,252,0.09);
  padding: 70px 0 80px 0;
  margin-bottom: 60px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 200px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 25px;
}
.hero h1 {
  color: #20315B;
  font-size: 2.8rem;
  margin-bottom: 12px;
  line-height: 1.13;
  text-shadow: 1px 2px 16px rgba(255,255,255,0.14);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0px;
}
.hero p {
  color: #20315B;
  font-size: 1.225rem;
  margin-bottom: 20px;
}
.hero .btn-primary {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .hero {
    padding: 30px 0 35px 0;
    margin-bottom: 36px;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
}

/* =============== FEATURES & CARDS =============== */
.features-grid, .feature-list, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 850px) {
  .features-grid, .feature-list, .card-container, .card-grid, .content-grid {
    gap: 16px;
  }
}
.features-grid .feature, .feature-item, .card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 20px 0 rgba(107,127,252,0.12);
  padding: 26px 22px 22px 22px;
  min-width: 245px;
  flex: 1 1 calc(25% - 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .16s, transform .16s;
}
.features-grid .feature:hover, .card:hover {
  box-shadow: 0 8px 36px 0 rgba(245,88,123,0.14);
  transform: translateY(-3px) scale(1.025) rotate(-1.3deg);
  z-index: 1;
}
.features-grid .feature img, .feature img, .feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  animation: bounce-in 0.85s;
}

@keyframes bounce-in {
  0% { transform:scale(0.8) translateY(25px); opacity:0; }
  60%{ transform:scale(1.1) translateY(-10px); opacity:1; }
  100%{ transform:scale(1) translateY(0); opacity:1; }
}

@media (max-width: 1024px) {
  .features-grid .feature, .card {
    min-width: 48%;
    flex: 1 1 48%;
  }
}
@media (max-width: 660px) {
  .features-grid .feature, .card {
    min-width: 100%;
    flex: 1 1 100%;
  }
  .features-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

.feature h3 {
  color: var(--blue);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 9px;
}

.feature p {
  font-size: 1rem;
  color: #20315B;
}

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

/* =============== TESTIMONIALS =============== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials h2 {
  text-align: left;
  padding-bottom: 8px;
  color: var(--pink);
  font-weight: 900;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(96, 182, 166, 0.10);
  color: #20315B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px 22px 28px;
  min-width: 275px;
  flex: 1 1 31%;
  margin-bottom: 20px;
  border-left: 8px solid var(--blue);
  position: relative;
  transition: box-shadow .17s, transform .14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #FFD94722;
  transform: scale(1.025) rotate(1.1deg) translateY(-5px);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #20315B;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 2px;
}
.stars {
  color: var(--yellow);
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  user-select: none;
}.testimonial-card:last-child {
  margin-bottom: 0;
}
@media (max-width: 950px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 100%;
    flex: 1 1 100%;
  }
}

/* =============== CTA / BOOKING / CONFIRMATION =============== */
.cta, .confirmation {
  background: linear-gradient(90deg, var(--yellow) 0 60%, var(--secondary) 100%);
  box-shadow: 0 3px 32px rgba(245,88,123,0.06);
}
.cta h2, .confirmation h1 {
  color: #20315B;
}
.cta .btn-primary {
  margin: 12px 0 4px 0;
}
.confirmation .btn-primary {
  margin-top: 14px;
}
.booking-info, .visit-booking {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #20315B;
}

/* =============== PRICING TABLE =============== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px #60B6A60b;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 12px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 2px solid #E6ECF3;
}
.pricing-table th {
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: 11px 7px;
    font-size: .95rem;
  }
}

/* =============== FOOTER =============== */
footer {
  background: #20315B;
  color: #fff;
  border-radius: 30px 30px 0 0;
  padding-top: 32px;
  margin-top: 48px;
  box-shadow: 0 -2px 24px rgba(32,49,91,0.17);
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto 16px auto;
  padding: 0 18px;
}
.footer-top img {
  height: 36px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-top nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.18s;
  border-radius: 8px;
  padding: 5px 8px;
}
.footer-top nav a:hover {
  color: var(--yellow);
}
@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-top nav {
    gap: 10px;
  }
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 18px 14px 18px;
  border-top: 1px solid #314279;
  font-size: 0.98rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #fff;
}
.contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.copyright {
  color: #A9B2D0;
  font-size: 0.89rem;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ============= TEXT/IMAGE SECTIONS ============= */
.text-image-section,
.text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .text-image-section, .text-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.text-section ul {
  margin-top: 6px;
  margin-bottom: 15px;
  padding-left: 15px;
  list-style-type: disc;
}
.text-section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.text-section img {
  margin-right: 12px;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

/* =========== MISCELLANEOUS UI ========= */
details, summary {
  font-family: inherit;
  font-size: inherit;
}
hr {
  border: 0;
  height: 1px;
  background: #E6ECF3;
  margin: 24px 0;
}

/* Playful badge, highlight, etc. */
.badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: .94rem;
}

/* =============== COOKIE BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: #fffbe7;
  color: #20315B;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -4px 28px rgba(255, 231, 102, 0.15);
  border-top: 4px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeUp 0.55s;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  flex: 1 1 60%;
  color: #20315B;
}
.cookie-banner .cookie-btn {
  min-width: 125px;
  padding: 9px 21px;
  margin-left: 8px;
  border: none;
  border-radius: 21px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 10px rgba(96,182,166,0.07);
  transition: background .18s, color .18s, box-shadow .15s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--green);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover {
  background: var(--blue);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--pink);
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover {
  background: var(--yellow);
  color: #20315B;
}
.cookie-banner .cookie-btn.settings {
  background: var(--yellow);
  color: #20315B;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 7px 12px 7px;
  }
  .cookie-banner .cookie-btn {
    width: 90%;
    margin: 9px 0 0 0;
    font-size: 1rem;
  }
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(60px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,49,91,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal .27s;
}
@keyframes fadein-modal {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-dialog {
  border-radius: 18px;
  background: #fff;
  padding: 32px 24px 24px 24px;
  max-width: 400px;
  width: 95vw;
  box-shadow: 0 6px 32px 0 rgba(245,88,123,0.17);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-dialog h3 {
  color: #20315B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
}
.cookie-modal-dialog ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-cookie-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-cookie-toggle input[type="checkbox"] {
  appearance: none;
  outline: none;
  width: 25px;
  height: 14px;
  background: #60B6A6;
  border-radius: 10px;
  position: relative;
  transition: background .12s;
  cursor: pointer;
}
.cookie-cookie-toggle input[type="checkbox"]:checked {
  background: #FFD947;
}
.cookie-cookie-toggle input[type="checkbox"]::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 3px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  transition: left .16s;
}
.cookie-cookie-toggle input[type="checkbox"]:checked::before {
  left: 13px;
}
.cookie-modal-dialog .close-modal {
  position: absolute;
  top: 9px; right: 12px;
  background: var(--pink);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal-dialog .close-modal:hover, .cookie-modal-dialog .close-modal:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal-dialog .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-dialog .cookie-btn {
  min-width: 100px;
}

/* =============== RESPONSIVE BREAKPOINTS =============== */
@media (max-width: 450px) {
  .hero h1 { font-size: 1.3rem; }
  section, .section { padding: 13px 1px; }
  .btn-primary, .btn-secondary { padding: 10px 12px; font-size: .99rem; }
  .testimonial-card, .features-grid .feature, .card {
    padding: 13px 10px 13px 11px;
    font-size: 0.99rem;
  }
}

/* =============== ANIMATIONS & MICROINTERACTIONS =============== */
section, .card, .testimonial-card, .feature {
  animation: fadeInSection 0.55s both;
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98) !important;
}

@media (hover: hover) {
  .feature img, .card img {
    transition: transform .25s;
  }
  .feature:hover img, .card:hover img {
    transform: rotate(-7deg) scale(1.12);
  }
}

/* =============== MISCELLANEOUS STRUCTURE =============== */
::-webkit-input-placeholder { color: #A9B2D0; }
::-moz-placeholder { color: #A9B2D0; }
:-ms-input-placeholder { color: #A9B2D0; }
::placeholder { color: #A9B2D0; }

input[type="text"], input[type="email"], textarea {
  border: 2px solid #E6ECF3;
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 15px;
  transition: border-color .13s;
  background: #fff;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

/* =============== PLAYFUL ELEMENTS DECOR =============== */
h1, h2, h3, h4 {
  position: relative;
}
h1::after, h2::after, h3::after {
  content: '';
  display: block;
  width: 36px; height: 8px;
  border-radius: 10px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--pink) 0 33%, var(--yellow) 65%, var(--blue) 100%);
  opacity: 0.42;
}
@media (max-width:450px) {
  h1::after, h2::after, h3::after {
    width: 22px; height: 6px;
  }
}

/* =============== UTILITY SPACING CLASSES =============== */
.mb-24 { margin-bottom: 24px!important; }
.mt-24 { margin-top: 24px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }

/* =============== PRINT =============== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer, .btn-primary, .btn-secondary { display: none !important; }
  body { background: #fff; color: #000; }
  section, .section { background: transparent; box-shadow: none; border-radius: 0; }
}
