/* --- CSS RESET & BASE STYLES --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #32515F;
  background-color: #FFF;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #32515F;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus {
  outline: 2px solid #D6B370;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 24px;
}
li + li {
  margin-top: 8px;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #233847;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
h5 { font-size: 1rem; margin-bottom: 8px; }
h6 { font-size: 0.95rem; margin-bottom: 6px; }
p, .content-wrapper > ul, .content-wrapper > ol {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #32515F;
  line-height: 1.7;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
  color: #233847;
  letter-spacing: 0.01em;
}

/* --- CONTAINERS & SPACING --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- HEADER --- */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E9E6E1;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #32515F;
  font-size: 1rem;
  padding: 4px 0 4px 0;
  transition: color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D6B370;
}
.btn-primary {
  background-color: #32515F;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 10px 32px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s, color 0.16s;
  box-shadow: 0 2px 8px rgba(50,81,95,0.09);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #D6B370;
  color: #233847;
  box-shadow: 0 4px 16px rgba(214,179,112,0.12);
}
.btn-secondary {
  background: #D6B370;
  color: #233847;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 8px 28px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 6px rgba(214,179,112,0.09);
  display: inline-block;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #FFF;
  color: #32515F;
  box-shadow: 0 3px 14px rgba(50,81,95,0.08);
  border: 1px solid #D6B370;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #D6B370;
  color: #233847;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 4px 16px;
  margin: 10px 10px 10px 0;
  cursor: pointer;
  z-index: 250;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #32515F;
  color: #FFF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 5000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 8px rgba(50,81,95,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #32515F;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 5100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D6B370;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 36px;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #32515F;
  padding: 12px 0;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  width: 100%;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
  box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #D6B370;
  color: #233847;
}
/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- HERO SECTION --- */
.hero-section {
  background: #F6F6F4;
  padding: 60px 0 40px 0;
  border-bottom: 1px solid #E9E6E1;
}
.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  margin: 0 auto;
  gap: 20px;
}
.hero-section h1 {
  color: #233847;
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero-section p {
  color: #46607A;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
}
.hero-section .btn-primary {
  margin-top: 6px;
}

/* --- FEATURE GRID --- */
.features-section {
  background: #FAFAF8;
}
.features-section h2 {
  color: #32515F;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 22px rgba(50,81,95,0.06);
  padding: 32px 24px;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border: 1.5px solid #F2EEE9;
  transition: box-shadow 0.2s, border 0.17s;
}
.feature-item:hover {
  box-shadow: 0 8px 30px rgba(50,81,95,0.12);
  border-color: #D6B370;
}
.feature-item img {
  width: 42px;
  margin-bottom: 8px;
  filter: grayscale(12%) brightness(0.97);
}
.feature-item h3 {
  color: #233847;
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.feature-item p {
  color: #46607A;
  font-size: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: #FFF;
}
.testimonials-section h2 {
  text-align: center;
  color: #32515F;
}
.testimonials-section .content-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
      flex-direction: row;
}
.testimonial-card {
  background: #F7F8F9;
  color: #233847;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 28px 28px 24px 28px;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(50,81,95,0.07);
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border-left: 4px solid #D6B370;
  transition: box-shadow 0.18s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(214,179,112,0.13);
}
.testimonial-card p {
  font-size: 1.03rem;
  color: #32515F;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #46607A;
  font-family: 'Roboto Slab', serif;
}
.star-rating {
  color: #D6B370;
  letter-spacing: 2px;
  font-size: 1.4rem;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* --- CARDS, GRIDS & LISTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 2px 16px rgba(50,81,95,0.07);
  padding: 28px 22px;
  border: 1.5px solid #F2EEE9;
  transition: box-shadow 0.20s, border 0.16s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(214,179,112,0.11);
  border-color: #D6B370;
}
.service-card {
  composes: card;
  margin-bottom: 20px;
  flex: 1 1 260px;
}
.service-card h3 {
  color: #233847;
  margin-bottom: 8px;
}
.pricing {
  font-size: 1.07rem;
  font-weight: 700;
  color: #D6B370;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.article-list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.article-list li {
  font-size: 1.07rem;
  color: #233847;
}
.article-list a {
  color: #32515F;
  text-decoration: underline;
  transition: color 0.16s;
  font-family: 'Roboto Slab', serif;
}
.article-list a:hover,
.article-list a:focus {
  color: #D6B370;
}
.articles-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex: 2;
}
.articles-list li {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(214,179,112,0.04);
  padding: 18px 18px 12px 18px;
  border: 1px solid #EFEAE3;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.articles-list a {
  color: #32515F;
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  text-decoration: underline;
}
.popular-articles {
  flex: 1 1 180px;
  background: #FAFAF8;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(50,81,95,0.06);
  padding: 18px 18px 12px 18px;
  border: 1px solid #EEE9DB;
  min-width: 180px;
  margin-left: 12px;
}
.popular-articles h4 {
  margin-bottom: 8px;
}
.popular-articles ul {
  padding-left: 20px;
}

/* --- ABOUT/BIO SECTIONS --- */
.about-blurb-section {
  background: #FAFAF8;
  border-radius: 0 0 35px 35px;
}
.about-blurb-section h2 {
  font-size: 2rem;
  color: #32515F;
}
.about-blurb-section p {
  color: #46607A;
  font-size: 1.08rem;
}
.about-blurb-section .btn-secondary {
  margin-top: 10px;
}
.text-section {
  margin-bottom: 16px;
}
.team-values h4 {
  margin-bottom: 6px;
}
.team-values ul {
  padding-left: 22px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: #32515F;
  color: #FFF;
  padding: 48px 0 38px 0;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 3px 18px rgba(50,81,95,0.075);
  margin-top: 50px;
  margin-bottom: 40px;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta-banner h2 {
  color: #FFF;
  margin-bottom: 10px;
}
.cta-banner .btn-primary {
  margin-top: 18px;
  font-size: 1.13rem;
}

/* --- RESOURCES --- */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.resource-item {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(50,81,95,0.06);
  padding: 28px 24px;
  max-width: 320px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1.5px solid #F2EEE9;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.17s;
}
.resource-item:hover {
  box-shadow: 0 12px 32px rgba(214,179,112,0.11);
  border-color: #D6B370;
}
.resource-item h3 {
  color: #32515F;
}
.resource-item p {
  color: #46607A;
}
.resource-item .btn-secondary {
  margin-top: 8px;
}
.subscribe-cta {
  background: #F6F6F4;
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 16px;
  text-align: center;
  color: #32515F;
}

/* --- CONTACT INFO --- */
.contact-info-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.contact-info {
  flex: 2 1 280px;
  background: #FAFAF8;
  border-radius: 10px;
  padding: 24px 20px 20px 24px;
  font-size: 1.07rem;
  color: #32515F;
  box-shadow: 0 2px 14px rgba(214,179,112,0.06);
}
.contact-info ul {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.contact-info a {
  text-decoration: underline;
  color: #32515F;
}
.map-embed {
  flex: 1 1 220px;
  background: #FFF;
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 1px 9px rgba(50,81,95,0.06);
  font-size: 1rem;
  color: #233847;
}

/* --- FOOTER --- */
footer {
  background: #233847;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 38px 0 18px 0;
  border-top: 1px solid #F2EEE9;
  margin-top: 50px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-flex > * {
  min-width: 180px;
  flex: 1 1 180px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.footer-nav a {
  color: #D6B370;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFF;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.99rem;
  color: #F7EFE5;
}
.footer-contact img {
  vertical-align: middle;
  width: 17px;
  margin-right: 6px;
}
.footer-contact a {
  color: #F7EFE5;
  text-decoration: underline;
}
.footer-contact p {
  color: #F7EFE5;
}
.footer-contact a:hover {
  color: #D6B370;
  text-decoration: underline;
}

/* --- POLICY SECTIONS --- */
.policy-section {
  background: #FFFDF8;
  padding: 50px 0 38px 0;
}
.policy-section .container {
  max-width: 800px;
}
.policy-section h1 {
  font-size: 2.2rem;
}
.text-section {
  background: #FAFAF8;
  border-radius: 10px;
  padding: 22px 18px;
  font-size: 1.06rem;
  color: #32515F;
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  background: #F6F6F4;
  padding: 60px 0 40px 0;
}
.next-steps { margin-top: 18px; }
.next-steps .btn-primary {
  font-size: 1.1rem;
}

/* --- SEARCH BAR & CATEGORIES NAV --- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.search-bar input {
  font-size: 1rem;
  border: 1.5px solid #E9E6E1;
  border-radius: 8px;
  padding: 8px 14px;
  width: 100%;
  background: #FFF;
  color: #32515F;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.13s;
  outline: none;
}
.search-bar input:focus {
  border-color: #D6B370;
}
.categories-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.categories-nav a {
  background: #FFFDF8;
  color: #32515F;
  border: 1.5px solid #D6B370;
  font-family: 'Roboto Slab', serif;
  border-radius: 100px;
  padding: 5px 22px;
  font-size: 1rem;
  transition: background 0.15s, color .15s;
}
.categories-nav a:hover,
.categories-nav a:focus {
  background: #D6B370;
  color: #FFF;
}

/* --- COOKIE CONSENT --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFFDF8;
  color: #233847;
  border-top: 2px solid #D6B370;
  box-shadow: 0 -2px 16px rgba(50,81,95,0.06);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px 14px 14px;
  transition: transform 0.34s cubic-bezier(.55,.01,.4,1);
  gap: 13px;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookie-consent-banner button {
  padding: 7px 22px;
  border-radius: 24px;
  border: none;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.15s;
}
.cookie-accept-btn {
  background: #32515F;
  color: #FFF;
}
.cookie-accept-btn:hover,
.cookie-accept-btn:focus {
  background: #D6B370;
  color: #233847;
}
.cookie-reject-btn {
  background: #E9E6E1;
  color: #32515F;
}
.cookie-reject-btn:hover,
.cookie-reject-btn:focus {
  background: #D6B370;
  color: #FFF;
}
.cookie-settings-btn {
  background: #D6B370;
  color: #233847;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #32515F;
  color: #FFF;
}

/* Cookie banner modal (Settings) */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(50,81,95,0.37);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.22s;
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(50,81,95,0.17);
  padding: 36px 26px 30px 26px;
  min-width: 320px;
  max-width: 90vw;
  color: #32515F;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popupIn .22s;
}
@keyframes popupIn {
  0% { transform: scale(0.94); opacity: 0; } 100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 12px; top: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #32515F;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover {
  color: #D6B370;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #233847;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #E9E6E1;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #F7EFE5;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: #D6B370;
}
.cookie-category.essential .cookie-toggle {
  background: #D6B370;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle span {
  background: #32515F;
}
.cookie-category.essential label {
  color: #B39467;
  font-weight: 600;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
  .header-flex {
    flex-direction: row;
    gap: 12px;
    padding: 12px 0;
  }
  .footer-flex {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-section {
    padding-top: 36px;
    padding-bottom: 28px;
  }
  .features-section, .about-blurb-section, .cta-banner, .policy-section, .testimonials-section {
    padding: 32px 0 26px 0;
    margin-bottom: 38px;
  }
  .section {
    padding: 29px 8px;
    margin-bottom: 35px;
  }
  .feature-grid, .resources-grid, .card-container, .articles-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .about-blurb-section, .about-team-section, .brand-story-section {
    border-radius: 0;
}
  .footer-flex {
    gap: 20px;
  }
  .contact-info-section .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .cta-banner {
    padding: 33px 0 22px 0;
    margin-top: 24px;
    margin-bottom: 30px;
  }
  .cookie-modal {
    min-width: 90vw;
    max-width: 98vw;
    padding: 24px 8px 24px 12px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .btn-primary, .btn-secondary {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}

/* --- UTILITY CLASSES & MICRO-ANIMATIONS --- */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.18s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}
input, textarea, select {
  font-family: inherit;
}
::-webkit-input-placeholder { color: #9CADC2; }
::-moz-placeholder { color: #9CADC2; }
:-ms-input-placeholder { color: #9CADC2; }
::placeholder { color: #9CADC2; }

/* --- END OF CSS --- */
