/* RESET & BASE STYLES */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F2F2E8;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F2F2E8;
  color: #285C3A;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #285C3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A1C867;
  text-decoration: underline;
}

/* BRAND FONT-FACE - fallback if Google Fonts are not loaded */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather Bold'), local('Merriweather-Bold');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Regular'), local('Roboto-Regular');
}

/* TYPOGRAPHY - PLAYFUL, DYNAMIC */
h1, .hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #285C3A;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 1px 2px 0px #A1C86733;
  transition: color 0.2s;
}
h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: #39995D;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 6px;
  background: #A1C867;
  border-radius: 3px 12px 12px 3px;
  margin: 8px 0 0 0;
  animation: playful-bar 1.2s infinite alternate ease-in-out;
}
@keyframes playful-bar {
  from { width: 36px; }
  to { width: 60px; }
}
h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #285C3A;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #39995D;
  margin-bottom: 10px;
  font-weight: 700;
}
p, li, ul, ol, span, strong, address, .mission-statement, .privacy-summary, .terms-conclusion {
  font-size: 1rem;
  color: #285C3A;
}
.mission-statement, .mission-snippet, .privacy-summary, .terms-conclusion {
  font-size: 1.125rem;
  font-style: italic;
  color: #39995D;
  margin: 14px 0 0 0;
  font-family: 'Merriweather', serif;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px #A1C86722;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 20px 6px;
    margin-bottom: 34px;
    border-radius: 20px;
  }
  .container {
    padding: 0 6px;
  }
}


/* NAVIGATION BAR */
header {
  background: #fff;
  box-shadow: 0 2px 10px #A1C86722;
  padding: 0 0 0 0;
  position: sticky;
  top: 0; z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
  padding: 0 18px;
}
header nav a img {
  height: 42px;
  margin-right: 8px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav ul li a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #285C3A;
  font-size: 1rem;
  position: relative;
  padding: 6px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #A1C86744;
  color: #285C3A;
}
header nav .btn-primary {
  margin-left: 28px;
}

/* HIDE MOBILE MENU BUTTON ON DESKTOP */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  header nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: #285C3A;
    color: #FFF;
    font-size: 2rem;
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #285C3A22;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: #A1C867;
    color: #285C3A;
  }
  header nav .btn-primary {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 88;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.56,1.56,.44,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: -4px 0 32px #A1C86730;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #A1C867;
  border: none;
  font-size: 2.4rem;
  color: #285C3A;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  margin: 20px 20px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 8px #A1C86744;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffeea3;
  color: #285C3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 22px;
  margin: 60px 0 0 24px;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  color: #285C3A;
  padding: 12px 0;
  width: 90vw;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
  font-weight: 600;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #A1C86744;
  color: #285C3A;
}

/* HERO SECTIONS */
.hero {
  width: 100%;
  background: #A1C867;
  padding: 54px 0 42px 0;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 4px 32px #A1C86733;
  position: relative;
  margin-bottom: 60px;
  animation: heroRise 1s ease-out; 
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0);}
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding: 0 0;
  text-shadow: 0 1px 0 #fff8,0 1px 4px #A1C86733;
}
.hero h1, .hero h2 {
  color: #FFF;
  text-shadow: 2px 3px 0 #285C3A29;
}
.hero p {
  color: #fff;
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 16px;
}


/* FLEX & CARD LAYOUTS as required */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 5px 20px #A1C86715;
  transition: box-shadow 0.22s, transform 0.23s;
  border: 2.5px solid #A1C86722;
  overflow: hidden;
}
.card:hover, .card:focus {
  box-shadow: 0 9px 36px #A1C86738;
  transform: translateY(-3px) scale(1.022);
}
.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;
  }
}
.feature-grid, .initiative-grid, .advice-grid, .expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px #A1C86725;
  padding: 20px 16px 20px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
  position: relative;
  transition: box-shadow 0.12s, transform 0.18s;
  border: 2.5px solid #A1C86722;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.17s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px #A1C86744;
  transform: translateY(-4px) scale(1.025);
  background: #F2F2E8;
}
.feature-item:hover img {
  transform: rotate(-8deg) scale(1.1);
}

/* Testimonial styles - very high contrast for readability */
.testimonials, .testimonial-card {
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px #A1C86722;
  margin-bottom: 20px;
  max-width: 520px;
  font-size: 1.13rem;
  color: #1b3024;
  border: 2px solid #A1C86733;
  transition: transform .18s, box-shadow .18s;
  overflow: hidden;
}
.testimonial-card:hover {
  box-shadow: 0 7px 26px #39995D44;
  transform: scale(1.025);
}
.testimonial-card p {
  color: #1b3024;
  font-size: 1.13rem;
  margin-bottom: 4px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #39995D;
  font-family: 'Merriweather', serif;
}

/* BUTTONS */
.btn-primary {
  background: #39995D;
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  padding: 13px 34px;
  border-radius: 28px 14px 28px 14px;
  border: none;
  min-width: 160px;
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 16px #285C3A18;
  outline: none;
  transition: background 0.18s, box-shadow 0.22s, color 0.13s;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A1C867;
  color: #285C3A;
  box-shadow: 0 8px 32px #A1C86744;
  outline: none;
}
.btn-secondary {
  background: #fff;
  color: #285C3A;
  border: 2px solid #A1C867;
  font-size: 1.05rem;
  padding: 10px 28px;
  border-radius: 22px 22px 10px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #285C3A;
  color: #FFF;
}

/* SHADOW PLAY (animated shadow on buttons for dynamic feel) */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 20%;
  width: 60%;
  height: 44%;
  background: #A1C86722;
  border-radius: 30%/80%;
  z-index: -1;
  animation: btn-bounce .9s infinite alternate cubic-bezier(.81,0,.5,1.4);
}
@keyframes btn-bounce {
  0%   { transform: scale(0.97) translateY(0px); }
  100% { transform: scale(1.07) translateY(-4px); }
}

/* QUICK-LINKS & CATEGORY-LINKS */
.quick-links, .category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 0 0;
  font-size: 1rem;
}
.quick-links a, .category-links a {
  color: #39995D;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background .12s;
}
.quick-links a:hover, .category-links a:hover {
  background: #A1C86733;
  text-decoration: none;
}

/* TRUST ICONS */
.trust-icons {
  display: flex;
  gap: 18px;
  margin: 10px 0 16px 0;
}
.trust-icons img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #A1C86718;
  padding: 2px;
  box-shadow: 0 1px 6px #285C3A13;
  transition: background 0.13s;
}
.trust-icons img:hover {
  background: #A1C86744;
}

/* SERVICES, USPs, LISTS */
.services-list, .usps-list, .care-tips-list, .tips-list, .blog-post-list, .history-timeline, .editor-intros ul, .feature-list, .values-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.services-list li, .usps-list li, .care-tips-list li, .tips-list li, .blog-post-list li, .history-timeline li, .editor-intros ul li, .values-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1.07rem;
}
.services-list li::before, .usps-list li::before, .care-tips-list li::before, .tips-list li::before, .values-list li::before {
  content: '🌱';
  position: absolute;
  left: 2px;
  color: #39995D;
  font-size: 1.1em;
}
.blog-post-list li {
  margin-bottom: 10px;
}
ul.featured-articles, .featured-articles ul {
  gap: 8px;
  margin-left: 18px;
}

/* PLANNING PROCESS */
ol.planning-process-list, ol.consultation-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  counter-reset: item;
  margin-bottom: 18px;
  padding-left: 0;
}
ol.planning-process-list li, ol.consultation-steps li {
  padding-left: 40px;
  position: relative;
  font-size: 1.08rem;
}
ol.planning-process-list li::before, ol.consultation-steps li::before {
  counter-increment: item;
  content: counter(item) '. ';
  position: absolute;
  left: 2px;
  background: #A1C867;
  color: #fff;
  width: 28px;
  height: 28px;
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  top: 0;
}

/* FOOTER */
footer {
  background: #285C3A;
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 50px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -3px 24px #A1C86713;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color .18s;
  padding: 2px 7px;
}
footer nav a:hover, footer nav a:focus {
  color: #A1C867;
  background: #fff3;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-contact address {
  font-style: normal;
  color: #fff;
}
.footer-contact span, .footer-contact div {
  color: #fff;
}


/* ICON/LIST BOOSTS */
.icon-list {
  display: flex;
  gap: 18px;
  margin: 16px 0;
}
.icon-list img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #A1C86718;
}

.contact-snippet, .map-snippet {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 0 0;
  font-size: 1.05rem;
  color: #39995D;
  font-weight: 500;
}
.contact-snippet img, .map-snippet img {
  width: 24px;
  height: 24px;
}

.expert-advice-snippet, .mission-snippet, .next-steps-info {
  background: #A1C86718;
  border-radius: 11px;
  padding: 16px 17px;
  margin: 15px 0;
  color: #285C3A;
  font-style: italic;
  font-size: 1.06rem;
  box-shadow: 0 1px 6px #A1C86718;
}
.next-steps-info ul {
  margin-left: 10px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1011;
  background: #39995D;
  color: #fff;
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  box-shadow: 0 -2px 22px #285C3A55;
  font-size: 1.08rem;
  animation: cookie-appear 0.7s;
}
@keyframes cookie-appear {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
#cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
#cookie-banner button {
  padding: 10px 23px;
  font-size: 1rem;
  border-radius: 14px 10px 18px 10px;
  border: none;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.14s, color .14s;
}
#cookie-banner .accept {
  background: #fff;
  color: #285C3A;
  font-weight: bold;
  box-shadow: 0 2px 9px #fff7;
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: #ffeea3;
  color: #285C3A;
}
#cookie-banner .reject {
  background: #A1C867;
  color: #fff;
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: #ffd468;
  color: #285C3A;
}
#cookie-banner .settings {
  background: #285C3A;
  color: #fff;
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: #fff;
  color: #285C3A;
}
@media (max-width: 600px) {
  #cookie-banner {
    padding: 13px 3px 13px 3px;
    font-size: 1rem;
  }
}

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #285C3A99;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.4s;
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
#cookie-modal .cookie-modal-content {
  background: #fff;
  min-width: 320px;
  max-width: 380px;
  padding: 32px 30px 22px 30px;
  border-radius: 22px;
  box-shadow: 0 8px 48px #A1C86755;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  animation: cookie-modal-rise 0.32s;
}
@keyframes cookie-modal-rise {
  0% { transform: translateY(18px) scale(.93); opacity: .7; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
#cookie-modal h3 {
  font-size: 1.2rem;
  color: #285C3A;
  margin-bottom: 10px;
  font-family: 'Merriweather', serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 7px 0 17px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  letter-spacing: .1px;
}
.cookie-category input[type=checkbox]{
  accent-color: #A1C867;
  width: 20px; height: 20px;
  margin-right: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}
#cookie-modal button {
  padding: 9px 18px;
  border-radius: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  background: #39995D;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background .13s, color .13s;
}
#cookie-modal button:hover, #cookie-modal button:focus {
  background: #A1C867;
  color: #285C3A;
}
#cookie-modal .cookie-modal-close {
  background: #fff;
  color: #285C3A;
  border: 1.5px solid #A1C86788;
}
#cookie-modal .cookie-modal-close:hover {
  background: #ffeea3;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
  .container {
    padding: 0 6px;
  }
}
@media (max-width: 991px) {
  .feature-grid, .initiative-grid, .advice-grid, .expertise-grid {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card, .feature-item, .card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 15px 6px 15px 10px;
  }
  .footer-contact, footer nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.43rem;
  }
  .hero {
    padding: 36px 0 30px 0;
    border-radius: 0 0 26px 26px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 2px;
  }
  footer {
    padding: 28px 0 12px 0;
    border-radius: 18px 18px 0 0;
    font-size: 0.98rem;
  }
}

/* MISC PLAYFUL/DECORATIVE ANIMATIONS */
.feature-item {
  overflow: visible;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #A1C86744;
  z-index: 0;
  filter: blur(1.3px);
  opacity: .8;
  animation: playful-blop 3s infinite alternate cubic-bezier(.53,2,.81,-0.73);
  pointer-events: none;
}
@keyframes playful-blop {
  0%   { transform: scaleX(1) scaleY(.9); }
  100% { transform: scaleX(1.2) scaleY(1.17); }
}

/* FORMS - if present */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 14px;
  border: 2px solid #A1C86722;
  background: #fff;
  box-shadow: 0 2px 8px #A1C86711;
  transition: border 0.12s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A1C867;
  outline: none;
  box-shadow: 0 2px 12px #A1C86755;
}

/* Remove focus outline for mouse users but keep for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #A1C867;
}

/* CODE FOR ELEMENTS with class 'history-timeline', 'planning-process-list', 'consultation-steps' etc. - handled above */

/* Decorative divider for major sections */
section + section {
  border-top: 2.5px dashed #A1C86744;
  margin-top: 0;
}

/* Hide cookie-modal by default; shown as needed (must be toggled via JS) */
#cookie-modal { display: none; }
#cookie-modal.open { display: flex; }

/* Utility classes */
.hide { display: none !important; }
.centered { display: flex; justify-content: center; align-items: center; }
.full-width { width: 100%!important; }
.bold { font-weight: bold; }

/* END OF STYLES */
