/* -----------------------------
   CSS RESET & BASE LINE
----------------------------- */
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: #181a1b;
  color: #f6f5ee;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #f2b134;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff3cd;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', Arial, sans-serif;
  margin-bottom: 0.5em;
  color: #f6f5ee;
  font-weight: 700;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
strong {
  font-weight: 700;
  color: #fffde7;
}
.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* -----------------------------
   BRAND & INDUSTRIAL MODERN COLORS
----------------------------- */
:root {
  --primary: #265136;
  --primary-dark: #1a3725;
  --primary-metal: #356a4a;
  --secondary: #f6f5ee;
  --secondary-dark: #23272a;
  --accent: #f2b134;
  --accent-dark: #b38624;
  --border: #707070;
  --background-dark: #181a1b;
  --panel: #232627;
  --panel-light: #2c2c2e;
}

/* ----- TYPOGRAPHY SCALE ----- */
html { font-size: 16px; }
@media (max-width: 600px) {
  html { font-size: 15px; }
}
h1, .hero-section h1 { font-size: 2.3rem; letter-spacing: 1px; }
h2 { font-size: 1.5rem; letter-spacing: 0.5px; }
h3 { font-size: 1.15rem; }
p, li, label { font-size: 1rem; }

/* ----- INDUSTRIAL MODERN FONT EFFECTS ----- */
h1, h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: 1.25px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 800;
}


/* =============================
   NAVIGATION BAR & HEADER
============================= */
header {
  background-color: var(--panel);
  box-shadow: 0 2px 12px rgba(30,30,30,.15);
  border-bottom: 2px solid var(--primary-metal);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0 10px 0;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  background: none;
}
.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary-metal);
  color: var(--accent);
}
.main-nav img {
  height: 36px; width: auto;
  margin-right: 18px;
  vertical-align: middle;
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  font-size: 2rem;
  padding: 10px;
  margin-left: auto;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30, 33, 35, 0.97);
  z-index: 9999;
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 18px 4px rgba(40,40,42,0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  align-self: flex-end;
  padding: 20px 20px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 38px 28px 0 38px;
}
.mobile-nav a {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--panel-light);
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
}
@media (max-width: 1024px) {
  .main-nav a:not(:first-child) {
    font-size: 1rem;
    padding: 6px 6px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(:first-child) { font-size: 0.97rem; }
  .main-nav { gap: 10px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   HERO SECTION
============================= */
.hero-section {
  background: linear-gradient(115deg, var(--background-dark) 62%, var(--primary-metal) 100%);
  border-bottom: 2px solid var(--primary-metal);
  padding: 60px 0 40px 0;
  min-height: 260px;
}
.hero-section .container,
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-section h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1.13;
  text-shadow: 1px 1px 0 #0007;
}
.hero-section p {
  color: var(--secondary);
  font-size: 1.13rem;
  margin-bottom: 20px;
}

/* =============================
   CTA BUTTONS
============================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark) 92%);
  color: #232427;
  padding: 13px 30px;
  border: none;
  border-radius: 7px;
  box-shadow: 0 3px 16px -6px #fff1, 0 1px 2px #0002;
  cursor: pointer;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: background 0.23s, color 0.13s, box-shadow .16s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent) 74%);
  color: #181a1b;
  box-shadow: 0 2px 16px -2px #fffa, 0 2px 9px #0004;
}

/* =============================
   SECTION LAYOUTS & PADDING
============================= */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 800px) {
  .content-wrapper { gap: 16px; }
  section, .section { padding: 28px 8px; }
}

/* =============================
   FLEXBOX SPACING PATTERNS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--panel-light);
  border: 1.2px solid var(--panel);
  border-radius: 9px;
  box-shadow: 0 2px 12px -7px #000b, 0 1px 2px #0002;
  padding: 26px 20px 20px 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover, .card:focus {
  border-color: var(--accent);
  box-shadow: 0 5px 32px -9px var(--accent), 0 1px 16px #0002;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  color: #232427;
  border-left: 7px solid var(--primary);
  border-radius: 7px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px -4px #0005;
  transition: box-shadow .16s, border-color .16s;
}
.testimonial-card strong {
  color: var(--primary-metal);
  font-size: 1rem;
  letter-spacing: 0.8px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 9px 36px -16px var(--primary), 0 2px 12px #0003;
  border-left: 7px solid var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* =============================
   FEATURE GRIDS & ICONIC SECTIONS
============================= */
.feature-grid, .activity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid > div,
.activity-grid > div {
  background: var(--panel-light);
  border-radius: 6px;
  box-shadow: 0 2px 6px -4px #0006;
  border: 1px solid #343736;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 280px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
  align-items: flex-start;
  transition: box-shadow .16s, border-color .16s;
}
.feature-grid > div:hover,
.activity-grid > div:hover {
  box-shadow: 0 8px 32px -12px var(--accent), 0 2px 12px #0002;
  border-color: var(--accent);
}
.feature-grid img, .activity-grid img {
  height: 48px; width: 48px; filter: grayscale(25%) contrast(1.1); margin-bottom: 8px;
}

/* =============================
   THEME & HIGHLIGHT ELEMENTS
============================= */
.category-tabs, .weather-filters, .location-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px 0;
}
.category-tabs span, .weather-filters span, .location-selector span {
  padding: 8px 18px;
  border-radius: 19px;
  background: var(--panel-light);
  font-weight: 700;
  color: var(--secondary);
  border: 1px solid var(--panel);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.99rem;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.category-tabs span:hover,
.weather-filters span:hover,
.location-selector span:hover
{
  background: var(--accent);
  color: #232427;
}
.category-tabs span.selected,
.weather-filters span.selected,
.location-selector span.selected {
  background: var(--primary-metal);
  color: var(--accent);
}
.activity-teasers, .tip-highlights, .quick-tips, .daily-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.activity-teasers > div,
.tip-highlights > span,
.quick-tips > span {
  background: var(--panel-light);
  border-radius: 6px;
  padding: 16px 14px;
  min-width: 160px;
  font-size: 1rem;
  color: var(--secondary);
  box-shadow: 0 1.5px 10px -7px #0007;
}

.activity-teasers > div h3,
.activity-teasers > div p {
  margin-bottom: 9px;
}

.benefit-box {
  background: var(--accent);
  color: #232427;
  border-radius: 7px;
  padding: 18px 16px 14px 24px;
  margin-top: 24px;
  font-weight: bold;
  box-shadow: 0 2px 7px -4px #0005;
}
.benefit-box h4 { color: var(--primary); }
.benefit-box ul { color: #232427; }

.thematic-icons {
  display: flex;
  gap: 18px;
  margin: 18px 0 8px 0;
}
.thematic-icons img {
  width: 50px; height: 50px;
  filter: grayscale(17%) brightness(0.96) drop-shadow(0 1.5px 3.5px #181e21aa);
  transition: filter 0.18s;
  border-radius: 5px;
  background: var(--panel-light);
  padding: 7px;
}
.thematic-icons img:hover {
  filter: none;
  background: var(--accent);
}

.trust-icons {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  align-items: center;
}
.trust-icons img {
  width: 46px; height: 46px;
  filter: grayscale(32%) contrast(1.2);
  border-radius: 4px;
  background: var(--panel-light);
  padding: 7px;
}

/* =============================
   ACTIVITY & FILTER LISTS
============================= */
.activity-list,
.activity-suggestions,
.filter-options ul {
  margin: 0 0 16px 0;
  padding-left: 1.15em;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.activity-list li {
  padding: 14px 16px;
  background: var(--panel-light);
  border-radius: 7px;
  box-shadow: 0 2px 7px -7px #0005;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
}
.activity-list li .age-badge {
  background: var(--accent);
  color: #232427;
  font-size: .9rem;
  font-weight: bold;
  border-radius: 4px;
  padding: 2px 9px;
  margin-left: 8px;
}
.filter-options ul li {
  padding: 9px 12px;
  background: var(--panel-light);
  border-radius: 5px;
  color: var(--secondary);
  box-shadow: 0 1px 7px -7px #0003;
}

/* =============================
   CONTACT, ADDRESS & FOOTER
============================= */
.contact-section {
  background: var(--panel-light);
  border-radius: 8px;
  padding: 32px 20px !important;
  box-shadow: 0 2px 10px -5px #111b;
  margin-bottom: 40px;
}
.address-info, .phone-email {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.address-info img, .phone-email img {
  height: 20px; width: 20px; margin-right: 8px; vertical-align: bottom;
}
.opening-hours {
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-form-hint {
  margin-top: 11px;
  color: var(--accent);
  font-size: 0.97rem;
  font-style: italic;
}

footer {
  background: var(--panel);
  padding: 40px 0 18px 0;
  border-top: 2px solid var(--primary-metal);
  color: var(--secondary);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 13px;
  justify-content: center;
}
.footer-nav a {
  color: var(--accent);
  letter-spacing: .6px;
  font-weight: 600;
  font-size: 1rem;
  transition: color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  font-size: .97rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: sub;
  margin-right: 7px;
  filter: grayscale(44%) brightness(1.1);
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
#cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  background: var(--panel);
  color: var(--secondary);
  z-index: 99999;
  box-shadow: 0 -3px 17px -7px #0008;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 12vw 16px 12vw;
  font-size: 1rem;
  animation: slideUpBanner 0.6s cubic-bezier(.55,.08,.33,1.13);
}
@keyframes slideUpBanner {
  from {transform: translateY(110%);} to {transform: translateY(0);}
}
#cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-btn-main {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: .9px;
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 5px;
  margin: 0 2px;
  border: none;
  background: var(--accent);
  color: #232427;
  cursor: pointer;
  box-shadow: 0 2px 10px -9px #000a;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn-main {
  background: var(--primary-metal);
  color: var(--accent);
}
.cookie-btn-main:hover, .cookie-btn-main:focus {
  background: var(--accent);
  color: var(--panel);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-dark);
  color: #fff;
}
/* Cookie Consent Modal */
#cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,33,34, 0.74);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.29s;
}
#cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
#cookie-modal {
  background: var(--panel-light);
  color: var(--secondary);
  min-width: 320px;
  max-width: 95vw;
  border-radius: 10px;
  padding: 32px 26px 18px 26px;
  box-shadow: 0 14px 48px -18px #02091b,
              0 5px 20px -8px #0004;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
#cookie-modal h2 {
  font-size: 1.42rem;
  letter-spacing: .8px;
  color: var(--accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 9px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0 9px 5px;
  background: none;
}
.cookie-category label {
  font-size: 1rem;
  min-width: 170px;
}
.cookie-switch {
  width: 44px;
  height: 28px;
  background: #42484d;
  border-radius: 18px;
  position: relative;
  margin-left: 6px;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch span {
  position: absolute;
  left: 4px; top: 4px;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 90px;
  transition: left 0.16s, background .18s;
}
.cookie-switch input:checked + span {
  left: 20px;
  background: var(--primary-metal);
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-close-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}
/* Essential cookie always enabled */
.cookie-category .essential-label {
  font-weight: bold;
  color: var(--primary);
  opacity: 0.75;
  cursor: not-allowed;
}
.cookie-category .cookie-switch[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* =============================
   CARDS & PANELS
============================= */
.activity-highlights, .daily-tips {
  background: var(--accent);
  color: #232427;
  padding: 24px 18px;
  border-radius: 8px;
  margin: 18px 0 0 0;
  box-shadow: 0 2px 8px -7px #0008;
}
.activity-highlights h3,
.daily-tips h3 {
  color: var(--primary);
  margin-bottom: 9px;
  font-size: 1.19rem;
  letter-spacing: 0.8px;
}

/* =============================
   ABOUT & TEAM SECTION
============================= */
.about-section, .principles-section {
  background: var(--panel-light);
  border-radius: 8px;
  box-shadow: 0 2px 14px -7px #000a;
  padding: 32px 18px;
  margin-bottom: 30px;
  color: var(--secondary);
}
.about-section ul, .principles-section ul, .team-overview ul {
  margin: 8px 0 10px 0;
  padding-left: 1.3em;
}
.team-overview {
  margin-top: 18px;
  padding: 18px 14px;background: var(--panel);
  border-radius: 7px;
  box-shadow: 0 1px 6px -5px #0008;
}
.team-overview h3 {
  margin-bottom: 12px;
  color: var(--accent);
}
.team-overview ul li {
  margin-bottom: 7px;
  color: var(--secondary);
}

/* =============================
   GDPR/POLICY PAGES
============================= */
.footer-section {
  background: var(--panel-light);
  border-radius: 8px;
  box-shadow: 0 3px 14px -9px #000d;
  padding: 37px 23px;
  margin-bottom: 35px;
}
.footer-section .text-section {
  margin-top: 20px;
  color: var(--secondary);
  font-size: 1.06rem;
}
.footer-section h1, .footer-section h2 {
  color: var(--accent);
}

/* =============================
   CTA SECTION
============================= */
.cta-section {
  background: linear-gradient(96deg, var(--primary-metal), var(--background-dark) 80%);
  border-radius: 14px;
  padding: 40px 0 34px;
  margin-bottom: 68px;
  box-shadow: 0 4px 20px -9px #0007;
  text-align: center;
}
.cta-section h2 {
  color: var(--accent);
}
.cta-section p {
  color: var(--secondary);
  margin-bottom: 18px;
}

/* =============================
   RESPONSIVE DESIGN
============================= */
@media (max-width: 1100px) {
  .container { max-width: 920px; }
  .feature-grid > div, .activity-grid > div { max-width: 45vw; }
}
@media (max-width: 900px) {
  .container { max-width: 720px; }
  .feature-grid > div, .activity-grid > div { min-width: 146px; max-width: 100%; }
}
@media (max-width: 768px) {
  section, .section { padding: 22px 6px; }
  .hero-section { padding: 40px 0 20px 0; }
  .feature-grid, .activity-grid,
  .activity-teasers, .tip-highlights, .quick-tips, .daily-tips {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper, .about-section, .principles-section {
    padding: 0;
    gap: 13px;
  }
  .main-nav { display: none; }
  .footer-contact { font-size: 0.95rem; }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container { max-width: 99vw; padding: 0 4vw; }
  .section { padding: 22px 0; }
  .about-section, .principles-section, .footer-section { padding: 14px 4px; }
  .card, .testimonial-card, .benefit-box, .category-tabs span, .weather-filters span, .location-selector span {
    font-size: 1rem;
    padding: 11px 9px;
  }
  #cookie-consent-banner { padding: 16px 2vw 12px 2vw; font-size: 0.97rem; }
  #cookie-modal { padding: 17px 6px 10px 6px; }
}

/* ===================================
   ANIMATIONS & MICRO-INTERACTIONS
==================================== */
.card, .feature-grid>div, .activity-grid>div,
.testimonial-card, .cta-button, .category-tabs span,
.weather-filters span, .location-selector span {
  transition: box-shadow .13s, border-color .13s, background .16s, color .12s, filter .19s;
}
.cta-button, .cookie-btn, .cookie-btn-main {
  transition: background 0.15s, color 0.12s, box-shadow 0.14s, transform 0.15s;
}
.cta-button:active,
.cookie-btn:active, .cookie-btn-main:active {
  transform: scale(0.96);
}

/* =====================
   HELPER UTILITY CLASSES
===================== */
.hide { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.rounded { border-radius: 8px; }

/* =============================
   INDUSTRIAL MODERN ACCENTS
============================= */
.card, .feature-grid>div, .activity-grid>div, .testimonial-card {
  border: 1px solid #444a47;
  box-shadow: 0 2px 10px -8px #000d, 0 1px 6px -7px #b38624;
  background-clip: padding-box;
}


/* End of CSS */
