/* -----------------------------------------
   CSS RESET & NORMALIZATION (MINIMAL)
----------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #F4F8FB;
  color: #183153;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #20B685;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #168f67;
  text-underline-offset: 3px;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* -----------------------------------------
   BRAND TYPOGRAPHY
----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #183153;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
p, li, span, strong { font-size: 1rem; }

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

strong {
  font-weight: 700;
  color: #183153;
}

/* -----------------------------------------
   NATURE ORGANIC COLOR PALETTE
----------------------------------------- */
:root {
  --primary: #183153;    /* dark blue/earthy */
  --secondary: #20B685;  /* organic green */
  --accent: #F4F8FB;     /* very light background */
  --brown: #BB8869;      /* earth brown accent */
  --sand: #E9E6DD;       /* sand/light earth */
  --leaf: #A9D7B5;       /* natural soft green */
  --input-bg: #F1F3ED;   /* light organic background */
  --gray: #6B726B;       /* natural neutral */
  --shadow: 0 3px 10px 0 rgba(24,49,83,0.09);
}

/* -----------------------------------------
   UTILITIES/GENERAL CONTAINERS
----------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-grid, .features-grid, .reviews-list, .newsletter-benefits, .guide-list, .review-card, .news-feed, .news-list, .topics-grid, .summary-notes, .ranking-table, .footer-section {
  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;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,182,133,0.12);
}

.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.review-card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,182,133,0.15);
  transform: translateY(-2px) scale(1.02);
}

.news-item, .guide-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.news-item:hover, .guide-item:hover {
  box-shadow: 0 6px 22px 0 rgba(32,182,133,0.15);
  transform: translateY(-2px) scale(1.015);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px 20px 18px 20px;
  flex: 1 1 190px;
  min-width: 180px;
  max-width: 290px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px; height: 38px; margin-bottom: 5px;
}

/* -----------------------------------------
   BUTTONS & CTAs
----------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  padding: 11px 32px;
  font-size: 1rem;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.12s;
  min-width: 120px;
  box-shadow: 0 2px 7px 0 rgba(24,49,83,0.09);
  border: none;
  cursor: pointer;
  margin-top: 5px;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #168f67;
  color: #fff;
  box-shadow: 0 4px 17px 0 rgba(32,182,133,0.13);
  transform: translateY(-1px) scale(1.03);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--leaf);
  color: #183153;
  border-color: #bb8869;
  box-shadow: 0 3px 13px 0 rgba(32,182,133,0.10);
  transform: translateY(-1px) scale(1.03);
}

/* Newsletter section */
.newsletter-section {
  background: linear-gradient(120deg, var(--accent) 81%, #E9E6DD 100%);
  border-left: 12px solid var(--leaf);
}
.newsletter-benefits {
  flex-direction: column;
  gap: 9px;
  margin: 0 0 16px 0;
}
.newsletter-benefits li {
  position: relative;
  padding-left: 18px;
  color: #183153;
}
.newsletter-benefits li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}
.newsletter-info { font-size: 0.99rem; color: var(--gray); margin: 8px 0 0 0; }

/* -----------------------------------------
   FOOTER
----------------------------------------- */
footer {
  background: #183153;
  color: #fff;
}
.footer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding: 32px 0 12px 0;
}
.brand-info  img {
  max-width: 160px;
  margin-bottom: 15px;
}
.brand-info p {
  color: #E9E6DD;
  font-size: 1rem;
  margin-bottom: 0;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #A9D7B5;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #20B685;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact li {
  font-size: 0.97rem;
  color: #F4F8FB;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a {
  color: #A9D7B5;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.social-links a img {
  width: 27px; height: 27px;
  filter: grayscale(0.14) brightness(1.05);
  transition: filter 0.19s, transform 0.13s;
}
.social-links a:hover img {
  filter: none;
  transform: scale(1.09) rotate(-11deg);
}

@media (max-width: 900px) {
  .footer-section { gap: 20px; }
}
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 24px 0 8px 0;
  }
}

/* -----------------------------------------
   HEADER & MAIN NAVIGATION
----------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(24,49,83,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 90;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: transparent;
  position: relative;
}
.main-nav a {
  color: #183153;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 7px 17px;
  border-radius: 18px;
  transition: color 0.18s, background 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--leaf);
  color: #20B685;
}
.main-nav a.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 9px 24px;
  margin-left: 8px;
  font-weight: 700;
  border-radius: 100px;
}
.main-nav a.btn-primary:hover {
  background: #168f67;
  color: #fff;
}
.main-nav img {
  display: block;
  height: 42px;
  margin-right: 13px;
}

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

@media (max-width: 1020px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 900px) {
  .main-nav { flex-wrap: wrap; padding: 8px 0; gap: 8px; }
  .main-nav img { margin-right: 0; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    font-size: 2rem;
    border-radius: 10px;
    padding: 6px 20px;
    position: absolute;
    top: 18px; right: 18px;
    z-index: 1041;
    transition: background 0.15s;
    box-shadow: 0 2px 9px 0 rgba(24,49,83,0.14);
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #168f67;
    color: #fff;
  }
}

/* -----------------------------------------
   MOBILE MENU STYLES & OVERLAY
----------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: #F4F8FB;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.7,.32,.39,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  box-shadow: 2px 0px 30px rgba(24,49,83,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  font-size: 2.3rem;
  margin: 18px 22px 8px 0;
  border-radius: 38px;
  padding: 5px;
  box-shadow: 0 1px 4px 0 rgba(32,182,133,0.17);
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9E6DD;
  color: #183153;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 35px 0 35px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #183153;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  border-radius: 5px;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--leaf);
  color: var(--secondary);
}

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

/* Mobile menu open body lock */
body.mobile-menu-open {
  overflow: hidden;
}

/* -----------------------------------------
   TESTIMONIAL CARD STYLES
----------------------------------------- */
.testimonials-section {
  background: #fff;
  border-left: 10px solid var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--sand);
  border-radius: 13px;
  box-shadow: 0 2px 7px 0 rgba(24,49,83,0.09);
  color: #1C2322;
  flex: 1 1 320px;
  min-width: 250px;
  max-width: 550px;
  font-size: 1rem;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card strong {
  color: #183153;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.003em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(32,182,133,0.14);
  transform: scale(1.015);
}

/* -----------------------------------------
   SPECIAL BLOCKS AND ORGANIC SECTIONS
----------------------------------------- */
.filter-section, .newsletter-section, .ranking-section, .recommendation-highlights, .summary-notes, .privacy-policy-section, .gdpr-section, .cookies-policy-section, .regulations-section,.thank-you-section {
  background: linear-gradient(120deg, var(--accent) 80%, var(--sand) 120%);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 42px;
}
.recommendation-highlights {
  border-left: 8px solid #A9D7B5;
  padding-right: 25px;
}

.next-steps-info {
  background: var(--leaf);
  border-radius: 12px;
  padding: 15px 18px;
  margin-bottom: 25px;
  color: #183153;
  font-size: 1.04rem;
}

/* -----------------------------------------
   RANKING & TABLE SECTION
----------------------------------------- */
.ranking-table {
  flex-direction: column;
  gap: 0;
}
.table-header {
  background: var(--leaf);
  border-radius: 11px 11px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #183153;
  padding: 16px 10px;
  font-size: 1.05rem;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.table-row {
  background: #fff;
  border-bottom: 1px solid #E9E6DD;
  padding: 14px 10px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #183153;
  font-size: 1rem;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.table-row:last-child {
  border-radius: 0 0 14px 14px;
  border-bottom: none;
}

/* Comparison filters */
.comparison-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 0 0;
}
.comparison-filters ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.comparison-filters li {
  background: var(--leaf);
  color: #183153;
  border-radius: 7px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Quick tips */
.quick-tips {
  background: var(--input-bg);
  border-left: 6px solid var(--secondary);
  border-radius: 8px;
  padding: 13px 17px;
  margin-top: 12px;
  color: #183153;
}
.quick-tips ul {
  gap: 6px;
}
.quick-tips li:before {
  content: '\2022';
  color: var(--secondary);
  margin-right: 6px;
  display: inline-block;
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list li {
  background: #fff;
  padding: 18px 15px;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(32,182,133,0.08);
  color: #183153;
}

/* -----------------------------------------
   RESPONSIVE LAYOUTS
----------------------------------------- */
@media (max-width: 1024px) {
  .feature-item, .review-card, .news-item, .guide-item, .card {
    min-width: 180px;
    max-width: 100%;
  }
  .features-grid, .reviews-list, .news-list, .guide-list {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .features-grid, .reviews-list, .news-list, .guide-list {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 3vw;
    max-width: 100vw;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 14px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .features-grid, .reviews-list, .news-list, .guide-list, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .card, .review-card, .feature-item, .news-item, .guide-item, .testimonial-card {
    min-width: 100%;
    margin-bottom: 13px;
    box-shadow: 0 1px 8px 0 rgba(32,182,133,0.08);
  }
}

/* -----------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 14px 14px 20px;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(24,49,83,0.13);
  border-radius: 19px 19px 0 0;
  z-index: 1400;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100vw;
  max-width: 100vw;
  animation: banner-slideup 0.47s cubic-bezier(.53,-0.06,.28,.98);
}
@keyframes banner-slideup {
  0% { transform: translateY(30%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  color: #183153;
  font-size: 1rem;
  max-width: 80vw;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 7px 23px;
  margin-left: 1px;
  outline: none;
  transition: background 0.19s, color 0.18s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #168f67;
  color: #fff;
}
.cookie-btn.reject {
  background: var(--leaf);
  color: #183153;
}
.cookie-btn.reject:hover {
  background: #183153;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.cookie-btn.settings:hover {
  background: var(--brown);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 15px 7px 10px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-text {
    max-width: 100vw;
  }
}

/* Cookie modal overlay and dialog */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1515;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,49,83, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: banner-slideup 0.30s cubic-bezier(.7,.32,.39,.98);
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 9px 36px 0 rgba(24,49,83,0.17);
  padding: 32px 28px 24px 28px;
  max-width: 95vw;
  min-width: 270px;
  max-width: 410px;
  color: #183153;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.02rem;
  position: relative;
  z-index: 1540;
  animation: modal-fadein 0.38s;
}
@keyframes modal-fadein {
  from {transform: scale(0.97) translateY(30px); opacity:0;}
  to {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
  color: #183153;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  background: var(--accent);
  border-radius: 9px;
  padding: 11px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  font-size: 1rem;
  color: #183153;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  background-color: #E9E6DD;
  border-radius: 24px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.19s;
}
.cookie-toggle input:checked + .slider {
  background-color: var(--secondary);
}
.cookie-toggle .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s, background 0.19s;
  box-shadow: 0 1px 2px rgba(24,49,83,0.12);
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(18px);
}

.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.4rem;
  color: var(--gray);
  border-radius: 18px;
  background: #E9E6DD;
  transition: background 0.16s, color 0.16s;
  padding: 3px 10px;
}
.cookie-modal .modal-close:hover {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 650px) {
  .cookie-modal {
    padding: 18px 9px 18px 15px;
    border-radius: 12px;
    font-size: 0.97rem;
    max-width: 96vw;
  }
}

/* -----------------------------------------
   ORGANIC/NATURE VISUAL ACCENTS
----------------------------------------- */
.section, .feature-item, .newsletter-section, .testimonial-card, .recommendation-highlights,
footer, .cookie-banner, .cookie-modal {
  /* Subtle organic shadow, large radius, soft borders for "soft" look */
  border-radius: 13px 19px 21px 15px/15px 19px 12px 15px;
}

/* Decorative organic overlay leaf accent (example for illustration, optional) */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -28px; right: -34px;
  width: 62px;
  height: 62px;
  background: url('assets/icons/icon-leaf.svg') no-repeat center/contain;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .section:before { display: none; }
}

/* -----------------------------------------
   END - OVERRIDE for FOCUS STATES
----------------------------------------- */
*:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #6B726B; opacity: 1; }
::-moz-placeholder { color: #6B726B; opacity: 1; }
:-ms-input-placeholder { color: #6B726B; opacity: 1; }
::placeholder { color: #6B726B; opacity: 1; }


/* END OF VENTUS SHOCK ORGANIC/NATURE FLEXBOX THEME */
