/* --- CSS 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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F3FEF7;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1A232D;
  min-height: 100vh;
}

/* --- BRAND & TYPEFACES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #0B4693;
  --secondary: #72B474;
  --accent: #F3FEF7;
  --warning: #F7C948;
  --error: #FF6B6B;
  --dark: #1A232D;
  --light: #F3FEF7;
  --text-dark: #11223C;
  --text-light: #fff;
  --shadow: 0 3px 16px 0 rgba(11, 70, 147, 0.08);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5, h6 { font-size: 1.1rem; font-weight: 700; }
p, ul, ol, dl, li, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
strong {
  font-weight: 600;
}

/* --- CONTAINER & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* --- SECTION BASE --- */
main section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  position: relative;
  background: var(--accent);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  main section, .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(93deg, #F3FEF7 55%, #72B474 115%);
  padding: 60px 0 40px 0;
  box-shadow: var(--shadow);
}
.hero h1 {
  color: var(--primary);
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.2rem;
  color: #1a232d;
  margin-bottom: 28px;
}
.hero .cta.primary {
  font-size: 1.1rem;
  padding: 14px 32px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero h1 { font-size: 1.5rem; }
}

/* --- NAVIGATION --- */
header {
  background: var(--light);
  box-shadow: 0 1px 16px 0 rgba(11,70,147,0.08);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  padding: 6px 10px;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
  background: #e4ffe5;
}
header img {
  height: 48px;
  transition: transform 0.24s cubic-bezier(.48,1.64,.93,.81);
}
header img:hover {
  transform: rotate(-6deg) scale(1.06);
}
header .cta.primary {
  margin-left: 18px;
}

/* MOBILE BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
  z-index: 70;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e4ffe5;
  color: var(--secondary);
}

@media (max-width: 970px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(11,70,147,0.97);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.65,1.45,.6,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  position: absolute;
  top: 20px; right: 26px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.18s;
  z-index: 1010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(243,254,247,0.1);
}
.mobile-nav {
  background: var(--primary);
  padding: 56px 32px 32px 32px;
  width: 94vw;
  max-width: 370px;
  height: 100vh;
  border-radius: 20px 0 0 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  padding: 16px 0;
  text-align: left;
  width: 100%;
  border-radius: 11px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

@media (min-width: 971px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- CARDS, FLEX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 270px;
  transition: transform 0.19s cubic-bezier(.4,1.4,.6,1), box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 24px rgba(11,70,147,0.12);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- FEATURES --- */
.features {
  background: var(--secondary);
  background-image: linear-gradient(120deg, #8ce2b8 0%, #72B474 70%, #F3FEF7 100%);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.features h2 {
  color: var(--primary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px 18px 20px;
  flex: 1 1 200px;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(11,70,147,0.05);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.22s cubic-bezier(.4,1.3,.8,1), background 0.15s;
  cursor: pointer;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  transition: transform 0.25s cubic-bezier(.65,1.5,.7,1.1);
}
.feature:hover img {
  transform: rotate(-12deg) scale(1.09);
}
.feature:hover {
  background: #F3FEF7;
  box-shadow: 0 8px 26px rgba(11,70,147,0.18);
  transform: scale(1.025) rotate(-1deg);
}

/* --- CTA BUTTONS --- */
.cta.primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 2px 12px 0 rgba(72,172,116,0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.17s cubic-bezier(.5,1.7,.6,1), box-shadow 0.13s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.045) rotate(-1.8deg);
  box-shadow: 0 6px 24px 0 rgba(11,70,147,0.13);
  text-decoration: none;
}
.cta {
  margin-top: 0;
}

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

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonials h2 {
  color: var(--primary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F9FFFB;
  padding: 22px 28px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0px 8px 0 rgba(72, 180, 116, 0.07);
  border: 2.2px dashed var(--secondary);
  transition: box-shadow 0.21s, background 0.21s;
}
.testimonial-card p {
  color: #20415a;
  font-size: 1.11rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: var(--font-display);
}
.testimonial-card:hover {
  background: #ECFBF1;
  box-shadow: 0 4px 20px 0 rgba(72, 180, 116, 0.10);
  transform: scale(1.027);
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: 15px 10px;
  }
}

/* --- FOOTER STYLES --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 16px 0;
  font-size: 1rem;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 8px;
}
footer nav a {
  color: #fff;
  opacity: 0.92;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--warning);
  text-decoration: underline;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.footer-contact span {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.87;
  gap: 7px;
  margin-right: 8px;
  margin-bottom: 5px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  filter: brightness(100) saturate(0) contrast(3.6);
}
footer p {
  color: #bed5e0;
  font-size: 0.94rem;
  font-family: var(--font-body);
}
@media (max-width: 560px) {
  footer .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
  footer nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- INPUTS & SEARCH --- */
input[type="search"] {
  width: 100%;
  max-width: 360px;
  padding: 11px 18px;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 1.5px solid #b3d5f9;
  background: #fff;
  font-family: var(--font-body);
  margin-top: 8px;
  margin-bottom: 4px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input[type="search"]:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px #72B47444;
}

/* --- BLOG SECTION EXTRAS --- */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-list article {
  background: #FFFAF3;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.blog-list article h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.19rem;
}
.blog-list article a {
  color: var(--secondary);
  text-decoration: underline;
  font-family: var(--font-display);
}
.blog-list article:hover {
  box-shadow: 0 4px 18px 0 rgba(11,70,147,0.09);
  transform: scale(1.01);
}
aside {
  background: #ECFBF1;
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 1px 6px 0 rgba(11,70,147,0.04);
  margin-bottom: 12px;
}
aside h4 {
  color: var(--secondary);
  margin-bottom: 6px;
}
aside ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
}
aside ul li {
  margin-bottom: 5px;
}
aside ul li a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
aside ul li a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
@media (min-width: 900px) {
  .content-wrapper {
    align-items: flex-start;
    gap: 40px;
  }
  .content-wrapper > :not(:first-child) {
    flex: 2 1 0;
  }
  .content-wrapper > aside {
    max-width: 250px;
    flex: 1 1 220px;
    margin-left: 0;
    margin-right: 8px;
  }
  .blog-list {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- LISTS --- */
ul, ol {
  list-style: circle inside;
  padding-left: 20px;
}
ul ul, ol ol, ul ol, ol ul {
  padding-left: 16px;
}
li {
  margin-bottom: 10px;
}

/* --- DEFINITION LISTS --- */
dl dt {
  font-weight: 600;
  margin-bottom: 2px;
  margin-top: 10px;
  color: var(--primary);
}
dl dd {
  margin-bottom: 8px;
  margin-left: 0;
  color: var(--text-dark);
}

/* --- OL (NUMBERED) --- */
ol {
  list-style-type: decimal;
}

/* --- CUSTOM CLASSES for TYPOGRAPHY --- */
.text-section h2, .text-section h3 {
  color: var(--primary);
  margin-bottom: 7px;
}
.text-section p {
  font-size: 1.06rem;
}
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}

/* --- SPACING & WHITE SPACE --- */
main section, .section,
.card, .feature, .testimonial-card, .blog-list article, aside {
  margin-bottom: 20px;
}

/* --- UTILITY: NO OVERLAP --- */
.card, .feature, .testimonial-card, .feature-item, .content-grid > *, .card-container > *, .text-image-section > * {
  margin-bottom: 0;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
@keyframes pop-sparkle {
  0% { transform: scale(1) rotate(0); }
  70% { transform: scale(1.06) rotate(-2deg); }
  85% { transform: scale(0.98) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}
.feature:hover {
  animation: pop-sparkle 0.5s;
}
.cta.primary:active {
  animation: pop-sparkle 0.3s;
}
.testimonial-card:active {
  animation: pop-sparkle 0.3s;
}

/* --- RESPONSIVE (Mobile-first) --- */
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.07rem; }
  section, .section {
    margin-bottom: 34px;
    padding: 20px 6px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- PLAYFUL DYNAMIC DECORATIVE ELEMENTS --- */
.feature::after, .hero::after {
  content: '';
  position: absolute;
  top: 15px; right: 22px;
  width: 24px; height: 24px;
  background: var(--secondary);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
  animation: float-dots 3.2s infinite ease-in-out alternate;
}
@keyframes float-dots {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(13px) scale(1.06); }
}
.hero::after {
  width: 55px; height: 55px;
  top: -30px; right: 12vw;
  background: var(--primary);
  opacity: 0.065;
  filter: blur(8px);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 -4px 16px 0 rgba(11,70,147,0.14);
  padding: 24px 16px 18px 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(.72,1.8,.7,1), opacity 0.3s;
  border-radius: 18px 18px 0 0;
  animation: pop-sparkle 0.52s;
}
.cookie-consent.hide {
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent p {
  color: var(--primary);
  font-size: 1.07rem;
  font-family: var(--font-body);
  max-width: 440px;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-button {
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: bold;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 1px 6px 0 rgba(11,70,147,0.07);
}
.cookie-button.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-button.accept:hover, .cookie-button.accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-button.reject {
  background: #fff0e7;
  color: var(--error);
}
.cookie-button.reject:hover, .cookie-button.reject:focus {
  background: var(--error);
  color: #fff;
}
.cookie-button.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-button.settings:hover, .cookie-button.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 540px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 7px 12px 7px;
  }
  .cookie-buttons {
    gap: 8px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(11, 70, 147, 0.60);
  opacity: 1;
  pointer-events: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.4s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 23px 23px 0 0;
  max-width: 430px;
  width: 94vw;
  margin-bottom: 0px;
  margin-top: auto;
  box-shadow: 0 0 26px 4px #c6eae2;
  padding: 34px 26px 24px 26px;
  animation: pop-sparkle 0.29s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10010;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 13px;
}
.cookie-modal-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
}
.cookie-modal .essential {
  color: var(--secondary);
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-button {
  margin-left: 0;
}
.cookie-close-modal {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.8rem;
  position: absolute;
  top: 14px; right: 18px;
  cursor: pointer;
  padding: 5px 13px;
  border-radius: 50%;
  transition: background 0.14s;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  background: #e4ffe5;
  color: var(--secondary);
}

@media (max-width: 500px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 8px 18px 8px;
  }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  background: #F3FEF7;
}
::-webkit-scrollbar-thumb {
  background: #b1d5b5;
  border-radius: 8px;
}

/* --- ACCESSIBILITY --- */
a:focus, button:focus, input:focus {
  outline: 2.5px solid var(--warning) !important;
  outline-offset: 1.5px;
  z-index: 22;
}

/* --- PRINT OVERRIDE --- */
@media print {
  header, footer, .cookie-consent, .cookie-modal-overlay, .mobile-menu {
    display: none !important;
  }
  body { background: #fff; }
}

/* --- MISC/UTILITY FOR SPACING --- */
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* --- END OF style.css --- */
