/* 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: #F6F3E7;
  color: #25435B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #217867;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #217867;
  outline-offset: 2px;
}
a:hover, a:active {
  color: #25435B;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #25435B;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h4 {
  font-size: 1.15rem;
}

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

p, li, em {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #25435B;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}

em {
  font-style: italic;
  color: #217867;
}

/* CONTAINER & BASE LAYOUTS */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 2px 18px rgba(33,120,103,0.08), 0 1.5px 10px rgba(37,67,91,0.03);
  position: relative;
}

@media (max-width: 900px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
    border-radius: 20px;
  }
}

/* FLEX LAYOUT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(37,67,91,0.10);
  padding: 24px 20px;
  transition: transform 0.18s cubic-bezier(.37,.01,.67,1.04), box-shadow 0.18s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 calc(33% - 32px);
  z-index: 1;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37,67,91,0.18);
}

@media (max-width: 900px) {
  .card {
    flex: 1 1 calc(50% - 24px);
  }
}
@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F3E7;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(37,67,91,0.09);
  margin-bottom: 24px;
  border-left: 5px solid #217867;
  position: relative;
  min-width: 0;
  z-index: 1;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #25435B;
  margin-bottom: 6px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.011em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #217867;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(33,120,103,0.14);
}

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

/* LISTS (feature/benefit lists)
   All sectioned lists use colored decorative bullets/icons for creative_artistic style */
ul li, .content-wrapper ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.6;
}
ul li img {
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 22px;
  height: 22px;
  background: #F6F3E7;
  border-radius: 8px;
  padding: 1.5px;
  box-shadow: 0 2px 4px rgba(33,120,103,0.05);
  object-fit: contain;
}
.content-wrapper ul {
  margin-bottom: 24px;
}

/* CALL TO ACTION BUTTONS */
.cta, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  padding: 13px 36px;
  font-size: 1.10rem;
  font-weight: 700;
  margin: 8px 0;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(33,120,103,0.09);
  border: none;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.13s;
}
.cta.primary {
  background: #217867;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #25435B;
  color: #fff;
  box-shadow: 0 8px 36px rgba(37,67,91,0.14);
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: #F6F3E7;
  color: #217867;
  border: 2px solid #217867;
  box-shadow: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #217867;
  color: #fff;
  border: 2px solid #217867;
  transform: scale(1.045);
}

/* HEADER / NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 13px rgba(33,120,103,0.11);
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
  padding: 20px 0 18px 0;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
header nav a img {
  height: 37px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin: 0 0 0 24px;
}
header nav ul li {
  padding: 0;
  margin: 0 0 0 0;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 14px;
  color: #25435B;
  border-radius: 20px;
  transition: background 0.14s, color 0.14s;
  font-weight: 600;
}
header nav ul li a:hover, header nav ul li a.active {
  background: #217867;
  color: #fff;
}
header nav .cta.primary {
  margin-left: 20px;
}

/* Hide hamburger menu on desktop */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 950px) {
  header nav ul, header nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #217867;
    background: none;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    margin-left: auto;
    cursor: pointer;
    z-index: 110;
    transition: background 0.13s, color 0.13s;
  }
  .mobile-menu-toggle:hover {
    background: #F6F3E7;
    color: #25435B;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,120,103,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.69,0,.17,1.18);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  margin: 24px 28px 18px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2006;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #F6F3E7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 85vw;
  margin: 0 34px;
  padding-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 18px;
  margin-bottom: 8px;
  background: rgba(246,243,231,0.07);
  transition: background 0.15s, color 0.15s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #217867;
}

@media (max-width: 500px) {
  .mobile-nav {
    width: 98vw;
    margin: 0 6px;
    gap: 18px;
  }
  .mobile-menu-close {
    margin: 20px 12px 5px 0;
    font-size: 1.8rem;
  }
}

/* HERO/INTRO SECTION */
main > section:first-of-type {
  background: linear-gradient(100deg, #F6F3E7 70%, #21786710 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 4px 30px rgba(37,67,91,0.06);
  margin-bottom: 50px;
}
main > section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #25435B;
  color: #F6F3E7;
  padding: 40px 0 20px 0;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
footer nav a {
  color: #F6F3E7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover {
  background: #21786722;
  color: #fff;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 26px;
}
footer ul li a {
  color: #F6F3E7;
  font-size: 0.97rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
}
.footer-brand img {
  width: 42px;
  height: auto;
}
.footer-contact {
  font-size: 0.98rem;
  color: #F6F3E7;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 700px) {
  footer nav, footer ul {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .footer-brand {
    flex-direction: column;
    gap: 5px;
  }
}

/* ARTISTIC & CREATIVE ELEMENTS */
.section, .card, .testimonial-card {
  border-radius: 26px 44px 24px 36px / 24px 14px 36px 44px;
  /* Playful custom shape with different radii (artistic edge) */
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -30px; left: 12px;
  width: 68px; height: 68px;
  background: #21786711;
  border-radius: 16px 38px 10px 30px / 15px 40px 32px 23px;
  z-index: 0;
  pointer-events: none;
}
main > section:nth-child(even):before {
  left: unset;
  right: 12px;
  top: -25px;
  background: #25435B10;
}
main > section {
  z-index: 1;
}

@media (max-width: 600px) {
  .section, .card, .testimonial-card {
    border-radius: 16px 22px 18px 18px / 20px 10px 16px 24px;
  }
  section:before, main > section:nth-child(even):before {
    width: 36px; height: 36px;
  }
}

/* DECORATIVE ACCENTS */
.card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 14px; right: -12px;
  width: 24px; height: 24px;
  background: #21786722;
  border-radius: 40% 60% 70% 20% / 50% 40% 60% 30%;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card:after {
  background: #25435B22;
}

/* FORMS & FIELDS */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1.5px solid #21786744;
  font-size: 1rem;
  background: #fff;
  color: #25435B;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(33,120,103,0.05);
  transition: border 0.14s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  border: 1.9px solid #217867;
  outline: none;
}

/* ANIMATIONS (fade & slide) */
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.slide-in {
  animation: fadein 0.65s cubic-bezier(.32,1.04,.48,.96);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #25435B;
  color: #F6F3E7;
  width: 100%;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 24px 24px;
  box-shadow: 0 -7px 36px rgba(33,120,103,0.12);
  font-size: 1rem;
  animation: fadein 0.9s;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #F6F3E7;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: 26px;
}
.cookie-btn {
  padding: 9px 28px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 2px 8px rgba(33,120,103,0.06);
}
.cookie-btn.accept {
  background: #217867;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #25435B;
  border: 1.5px solid #21786777;
}
.cookie-btn.settings {
  background: #25435B;
  color: #F6F3E7;
  border: 1.5px solid #F6F3E7;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #25435B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F6F3E7;
  color: #217867;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #217867;
  color: #fff;
  border-color: #217867;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 13px 21px 17px;
    font-size: 0.98rem;
    gap: 16px;
  }
  .cookie-buttons {
    margin-left: 0;
    width: 100%;
    gap: 10px;
  }
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(37,67,91,0.79);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.8s;
}
.cookie-modal {
  background: #fff;
  color: #25435B;
  border-radius: 32px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 9px 44px rgba(33,120,103,0.18);
  width: 95vw; max-width: 420px;
  outline: none;
  position: relative;
  animation: fadein 0.45s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: #217867;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #25435B;
  font-weight: 600;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 53px;
  height: 28px;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #F6F3E7;
  border-radius: 28px;
  transition: background 0.18s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #217867;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 21px; width: 21px;
  left: 4px; bottom: 3.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 3px #0002;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(20px);
  background: #25435B;
}

.cookie-modal .always-on {
  font-size: .89rem;
  color: #21786799;
  font-style: italic;
  margin-left: 6px;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 16px;
  font-size: 1.5rem;
  color: #217867;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4150;
}
.cookie-modal-close:hover {
  color: #25435B;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 22px 5px 19px 10px;
    border-radius: 18px;
    max-width: 98vw;
  }
}

/* QUOTES/TESTIMONIALS - Buddy Highlights for good contrast */
.testimonial-card {
  background: #fff;
  color: #25435B;
  border-left: 5px solid #217867;
}
.testimonial-card p, .testimonial-card strong, .testimonial-card span {
  color: #25435B;
}

/* Add artistic blockquote style for testimonials */
.testimonial-card:before {
  content: '“';
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21786766;
  font-size: 2.8rem;
  position: absolute;
  left: 22px; top: 6px;
  z-index: 1;
}
.testimonial-card p {
  margin-left: 30px;
  margin-top: 0;
  z-index: 2;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px 15px 13px 16px;
    font-size: 0.97rem;
    min-width: 0;
  }
  .testimonial-card p {
    margin-left: 22px;
    font-size: 1rem;
  }
  .testimonial-card:before {
    left: 15px;
    font-size: 2rem;
  }
}

/* ARTISTIC FONT VARIATION */
h1, h2, h3, h4, .cta, .footer-brand span {
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ARTISTIC COLOR ACCENTS (splashes/zest on headings) */
h2:after {
  content: '';
  display: inline-block;
  width: 38px;
  height: 8px;
  background: #217867;
  border-radius: 10px;
  margin-left: 15px;
  vertical-align: 5px;
  opacity: 0.19;
}
@media (max-width: 510px) {
  h2:after { width: 21px; height: 6px; margin-left: 5px; }
}

/* MODERN RESPONSIVE PADDING, GAPS AND WHITE SPACE */
main {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
section {
  margin-bottom: 42px;
  position: relative;
}
@media (max-width: 900px) {
  .container {
    padding: 0 5vw;
  }
}
@media (max-width: 600px) {
  section {
    margin-bottom: 30px;
    padding: 0px;
  }
}

/* Proximity and Section Gaps */
.section + .section {
  margin-top: 24px;
}

/* Ensure NO element overlaps - ample margins and padding */
* + .card, * + .testimonial-card, * + .section {
  margin-top: 24px;
}

/* Descriptive color backgrounds for feature highlights (creative_artistic style) */
.feature-highlight {
  background: #21786712;
  border-radius: 18px;
  padding: 16px 18px;
}

/* Newsletter/CTA Banner Style */
.newsletter-banner {
  background: #217867;
  color: #fff;
  border-radius: 28px;
  padding: 34px 28px 32px 28px;
  text-align: center;
  margin-bottom: 38px;
  box-shadow: 0 2px 18px rgba(33,120,103,0.09);
  font-family: 'Montserrat', Arial, sans-serif;
}

.newsletter-banner .cta.primary {
  background: #fff;
  color: #217867;
  border: none;
}
.newsletter-banner .cta.primary:hover {
  background: #F6F3E7;
  color: #217867;
}

/* Accessibility & Contrast fixes for all interactive elements */
.cta, .cta.primary, .cta.secondary, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
  outline: none;
}
.cta:focus-visible, .cta.primary:focus-visible, .cta.secondary:focus-visible, .cookie-btn:focus-visible {
  outline: 2.5px solid #217867;
  outline-offset: 2.5px;
}

/* MICRO-INTERACTIONS & HOVER EFFECTS */
.card:hover, .cta:hover, .footer-brand:hover {
  box-shadow: 0 6px 22px rgba(33,120,103,0.18) !important;
  transition: box-shadow 0.13s, transform 0.13s;
  transform: translateY(-4px) scale(1.018);
}
@media (hover: none) {
  .card:hover, .footer-brand:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(33,120,103,0.10) !important;
  }
}

/* FINER DEVICE ADJUSTMENTS */
@media (max-width: 450px) {
  .card, .testimonial-card {
    padding: 11px 6px;
    font-size: 0.97rem;
  }
}

/* Hide deco backgrounds on smallest screens for clarity */
@media (max-width: 410px) {
  section:before { display: none; }
}

/* Prevent absolute overlays from breaking touch */
.card:after, .testimonial-card:after {
  pointer-events: none;
}
section {
  padding: 15px;
}
/* ========== END OF CSS ========== */
