/* --- 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 {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #f9f7f3;
  color: #263219;
  min-height: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #263219;
  background: #f9f7f3;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
a {
  color: #14315C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0C5624;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;  
}
li {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* --- FONT FACE (FONTS FROM GOOGLE FONTS) --- */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  margin-bottom: 16px;
  color: #14315C;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.25;
}

@media (min-width: 576px) {
  h1 {
    font-size: 2.85rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

p, .text-section {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 18px;
  color: #263219;
}

/* --- CONTAINER LAYOUT UTILITY --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* --- NATURE_ORGANIC THEME UTILS --- */
:root {
  --brand-primary: #14315C;
  --brand-secondary: #E6B450;
  --brand-accent: #FFFFFF;
  --nature-green: #0C5624;
  --earth-brown: #B09B77;
  --nature-bg: #f9f7f3;
  --nature-section: #F3EDD8;
  --nature-shadow: rgba(20,49,92,0.10);
  --section-radius: 34px;
  --organic-radius: 28px;
  --organic-radius-sm: 14px;
}

/* --- SECTIONS & CARDS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nature-section);
  border-radius: var(--section-radius);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 12px;
    margin-bottom: 36px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}
.card {
  background: #fff;
  border-radius: var(--organic-radius);
  box-shadow: 0 6px 24px var(--nature-shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #edeadd;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 36px 0 rgba(20,49,92,0.14);
  transform: translateY(-3px) scale(1.012);
  border-color: var(--brand-secondary);
  z-index: 2;
}

/* CARD CONTENT UTILITY */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Grid Example */
.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) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  background: #fff;
  color: #14315C;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--organic-radius-sm);
  box-shadow: 0 2px 12px 0 rgba(20,49,92,0.10);
  margin-bottom: 20px;
  border-left: 6px solid var(--nature-green);
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #14315C;
  margin-bottom: 6px;
  font-size: 1.03rem;
  line-height: 1.6;
}
.testimonial-card strong {
  color: var(--nature-green);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #faf9f3;
  border-radius: var(--organic-radius-sm);
  padding: 20px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--nature-shadow);
}

@media (max-width: 480px) {
  .testimonial-card, .feature-item {
    padding: 14px 10px;
    gap: 11px;
  }
}

/* --- HEADER --- */
header {
  width: 100%;
  background: var(--nature-bg);
  box-shadow: 0 3px 18px -10px var(--nature-shadow);
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 12px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 28px;
}
.main-nav a {
  font-size: 1.02rem;
  color: var(--brand-primary);
  padding: 6px 4px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--nature-green);
  background: var(--brand-secondary);
  text-decoration: none;
}
.cta-btn {
  background: var(--nature-green);
  color: var(--brand-accent);
  font-family: 'Merriweather', serif;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 12px 30px;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 2px 8px var(--nature-shadow);
  display: inline-block;
  letter-spacing: 0.01em;
  outline: none;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  box-shadow: 0 5px 16px var(--nature-shadow);
}
.cta-btn.secondary {
  background: var(--brand-secondary);
  color: #14315C;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--nature-green);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--nature-green);
  cursor: pointer;
  margin-left: 20px;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-secondary);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  height: 100vh;
  width: 88vw;
  max-width: 335px;
  background: #F3EDD8;
  box-shadow: -4px 0 42px -14px rgba(20,49,92,0.19);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.71, -0.01, .48, 1.23);
  display: flex;
  flex-direction: column;
  padding: 34px 24px 24px 24px;
  gap:24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-family: 'Merriweather', serif;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 12px 0;
  border-radius: 5px;
  transition: background 0.14s, color 0.14s;
  touch-action: manipulation;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--nature-green);
  text-decoration: none;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
    margin-left: 11px;
  }
  .cta-btn {
    margin-left: 10px;
    padding: 11px 18px;
  }
  header .container {
    gap: 6px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Hide mobile nav by default */
@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO AREA --- */
.hero {
  background: linear-gradient(120deg, var(--nature-section) 80%, var(--brand-secondary) 130%);
  border-radius: 0 0 48px 48px / 0 0 14px 64px;
  padding: 50px 0 56px 0;
  box-shadow: 0 3px 16px -5px var(--nature-shadow);
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.25rem;
  margin-bottom: 14px;
}
.hero p {
  color: #293607;
  margin-bottom: 26px;
  font-size: 1.12rem;
}
.hero .cta-btn {
  margin-left: 0;
}
@media (min-width: 650px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 78px;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
}

/* --- FEATURES --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.features-grid > div {
  background: #fff;
  border-radius: 24px;
  flex: 1 1 260px;
  min-width: 210px;
  box-shadow: 0 3px 14px var(--nature-shadow);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features-grid img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  margin-bottom: 9px;
  background: #F6F2E2;
  padding: 5px;
  border-radius: 50%;
}
.features-grid h3 {
  margin-bottom: 5px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 28px -6px var(--brand-secondary);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 890px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div {
    min-width: unset;
  }
}

/* --- ABOUT PREVIEW, CTA BAR, NEWS TEASER --- */
.about-preview, .cta-bar, .news-teaser {
  background: #f5f3e5;
  border-radius: var(--section-radius);
  box-shadow: 0 3px 16px var(--nature-shadow);
}
.cta-bar .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .cta-bar .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* --- SERVICES OVERVIEW, TEAM LIST --- */
.services-overview ul, .team-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
  margin-top: 18px;
}

.team {
  background: #e7f9ee;
  border-radius: var(--section-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.team-list {
  margin-bottom: 14px;
  gap: 26px;
  margin-top: 18px;
}
.team-qualifications {
  margin-top: 6px;
  font-size: 0.99rem;
  color: #365216;
  border-left: 4px solid var(--nature-green);
  padding-left: 16px;
}

/* ----- TRUST & TESTIMONIALS ----- */
.trust-section {
  background: #f9f7f3;
}
.certifications ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 25px;
}
.testimonials-preview {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  .testimonials-preview {
    flex-direction: column;
    gap: 10px;
  }
}

.star-ratings {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  font-size: 1rem;
  color: #365216;
}
.star-ratings img {
  height: 22px;
  width: 22px;
}

/* ---- CONTACT PAGE ---- */
.contact-details ul li, .contact-details ul li a {
  color: #14315C;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.contact-details ul img {
  height: 26px;
  width: 26px;
  margin-right: 8px;
}
.contact-hero {
  background: #e7f9ee;
  border-radius: var(--section-radius);
  box-shadow: 0 3px 14px var(--nature-shadow);
}
.map-block {
  background: #f3edd8;
  border-radius: var(--section-radius);
  box-shadow: 0 2px 14px var(--earth-brown);
}

/* --- ARTISTS, INVESTMENT HIGHLIGHTS --- */
.artists-overview ul, .investment-highlights ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
  font-size: 1.11rem;
}
.insight-block {
  background: #e7f9ee;
  border-radius: 18px;
  padding: 18px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 7px var(--nature-shadow);
}

.market-insights {
  background: #fcfcf8;
  border-radius: var(--organic-radius);
}

/* --- LEGAL PAGES --- */
.legal {
  background: #fffbe6;
  border-radius: var(--organic-radius);
  box-shadow: 0 2px 16px rgba(170,146,68,0.08);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal ul {
  margin-bottom: 20px;
}

/* --- TAG FILTERS --- */
.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.filter {
  background: #e7f9ee;
  color: #096225;
  border-radius: 16px;
  font-size: 0.99rem;
  padding: 5px 14px;
  font-weight: 600;
  margin-right: 2px;
}

/* --- FOOTER --- */
footer {
  background: var(--nature-section);
  padding: 30px 0 20px 0;
  box-shadow: 0 -3px 20px -12px var(--nature-shadow);
  border-radius: 44px 44px 0 0 / 26px 76px 0 0;
}
.footer-links {
  text-align: center;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: #4b5734;
}
.footer-links a {
  color: #365216;
  margin: 0 4px;
  font-weight: 400;
  transition: color 0.16s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--brand-primary);
  text-decoration: underline;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}
.brand-footer img {
  height: 32px;
  width: 32px;
  margin-right: 4px;
}
.brand-footer .tagline {
  font-size: 1.01rem;
  color: #365216;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.brand-footer a img[alt*="Mail"],
.brand-footer a img[alt*="LinkedIn"] {
  width: 23px;
  height: 23px;
}
.brand-footer span:last-child a {
  margin: 0 5px;
}

/* --- THANK YOU PAGE --- */
.thank-you {
  background: #e7f9ee;
  border-radius: var(--section-radius);
  box-shadow: 0 3px 16px var(--nature-shadow);
  margin-bottom: 60px;
}

/* --- RESPONSIVE SPACING AND UTILS --- */
@media (max-width: 600px) {
  .footer-links, .brand-footer {
    padding: 0 4px;
  }
  section, .section {
    padding: 26px 8px;
    margin-bottom: 32px;
  }
}

/* --- BUTTONS, FORMS, INTERACTIVE ELEMENTS --- */
button, input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  background: var(--nature-green);
  color: #fff;
  padding: 11px 24px;
  border-radius: 32px;
  outline: none;
  border: none;
  box-shadow: 0 2px 10px var(--nature-shadow);
  transition: background 0.2s, box-shadow 0.18s;
  cursor: pointer;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  box-shadow: 0 4px 14px var(--nature-shadow);
}

/* --- COOKIE BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #1C3320EE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:18px 24px;
  box-shadow: 0 -4px 16px var(--nature-shadow);
  font-size: 1.06rem;
  animation: slideInBanner 0.6s cubic-bezier(.83,-0.18,.81,1.07);
  gap: 24px;
}
@keyframes slideInBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-consent-btn-group {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner button {
  font-size: 1rem;
  padding: 10px 20px;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #fff;
  color: var(--nature-green);
  border: 1px solid var(--nature-green);
}
.cookie-consent-banner .cookie-settings-btn:hover,
.cookie-consent-banner .cookie-settings-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-color: var(--brand-secondary);
}
.cookie-consent-banner .cookie-reject-btn {
  background: #e9ece7;
  color: var(--brand-primary);
  border: 1px solid #d4d7bb;
}
.cookie-consent-banner .cookie-reject-btn:hover,
.cookie-consent-banner .cookie-reject-btn:focus {
  background: #fffbe6;
  color: var(--nature-green);
  border-color: var(--nature-green);
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,34,24,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.3s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 20px;
  min-width: 312px;
  max-width: 96vw;
  padding: 32px 20px 25px 20px;
  box-shadow: 0 4px 32px 0 rgba(21,45,14,0.14);
  animation: slideModalUp 0.4s cubic-bezier(0.74,-0.01,0.6,1.38);
  position: relative;
}
@keyframes slideModalUp {
  from { transform: translateY(54px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.29rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 10px 8px 10px 16px;
  border-radius: 8px;
  margin-bottom: 11px;
  font-size: 1.01rem;
  box-shadow: 0 1px 3px rgba(183,183,131,0.09);
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #14315C;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #b7cdaa;
  border-radius: 9px;
  position: relative;
  outline: none;
  vertical-align: middle;
  transition: background 0.16s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--nature-green);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 16px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #183007;
  cursor: pointer;
}

@media (max-width: 480px) {
  .cookie-consent-banner, .cookie-modal {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.97rem;
    padding:11px 6px 11px 10px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 8px 12px 8px;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
a, .cta-btn, .card, .features-grid > div, button, .filter {
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.19s;
}
.card:active, .features-grid > div:active {
  transform: translateY(2px) scale(0.98);
}
.cta-btn:active {
  transform: scale(0.985);
}
.filter:hover, .filter:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px var(--nature-shadow);
}

/* --- ACCESSIBILITY FOCUS --- */
a:focus, .cta-btn:focus, button:focus, input:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* --- CLEAR MARGIN BETWEEN MAIN SECTIONS (20PX+) --- */
section, .section, .content-wrapper, .card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 690px) {
  section, .section {
    padding: 20px 3px;
  }
}

/* --- COLOR CONTRAST ADJUSTMENTS FOR TESTIMONIALS --- */
.testimonial-card,
.testimonial-card p,
.testimonial-card strong,
.star-ratings span {
  color: #14315C;
  background: #fff;
}

/* --- PREVENT OVERLAPPING & Z-INDEX --- */
.card, .testimonial-card, .cookie-consent-banner {
  z-index: 1;
}
.mobile-menu, .cookie-consent-banner, .cookie-modal-backdrop {
  z-index: 2000;
}

/* --- MISC --- */
::-webkit-input-placeholder { color: #bab491; }
::-moz-placeholder { color: #bab491; }
:-ms-input-placeholder { color: #bab491; }
::placeholder { color: #bab491; }

@media (max-width: 480px) {
  .container {
    padding: 0 6px;
    max-width: 99vw;
  }
  .cta-btn {
    padding: 8px 13px;
    font-size: 0.98rem;
    margin-left: 2px;
  }
  header .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
