/* -------------------- 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;
}
body {
  line-height: 1.5;
  background: #FAF7F2;
  color: #374632;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  outline: none;
  background: none;
}
:focus {
  outline-color: #A67C52;
  outline-width: 2px;
  outline-style: solid;
}

/* --------------- BASE TYPOGRAPHY & BRAND COLORS ---------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', Georgia, Times, serif;
  font-weight: 700;
  color: #374632;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.18rem;
}
p, li, blockquote, .text-section {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #374632;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
del, s {
  color: #A67C52;
}
blockquote, .quote_block {
  border-left: 3px solid #A67C52;
  padding-left: 18px;
  color: #374632;
  background: #FFF9F1;
  font-style: italic;
  margin: 24px 0;
  font-size: 1.15rem;
  border-radius: 8px;
}
strong, b {
  color: #A67C52;
}

/* Links */
a {
  color: #A67C52;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #374632;
  text-decoration: underline;
}

/* ------------- CONTAINER & LAYOUT ------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* no gap on container, use in child flex wrappers */
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(55, 70, 50, 0.11);
}

/* ------------- HEADER & NAVIGATION ------------- */
header {
  background: #fff;
  border-bottom: 2px solid #E6E2DC;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  min-height: 72px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  font-family: 'PT Serif', serif;
  font-size: 1.1rem;
  margin-left: auto;
}
.main-nav a {
  padding: 7px 8px;
  border-radius: 6px;
  color: #374632;
  transition: background 0.16s, color 0.16s;
}
.main-nav a.cta, .main-nav .cta {
  background: #A67C52;
  color: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  font-family: 'PT Serif', serif;
  font-weight: bold;
  letter-spacing: .02em;
  transition: background 0.2s;
}
.main-nav a.cta:hover, .main-nav .cta:hover, .main-nav a.cta:focus {
  background: #374632;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFD9A0;
  color: #374632;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #374632;
  font-size: 2rem;
  border: 2px solid #A67C52;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD9A0;
  border-color: #374632;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 80px 10px rgba(55, 70, 50, 0.20);
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.7,0,.17,1);
  z-index: 9999;
  padding-top: 0;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #374632;
  background: none;
  border: none;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  background: #FFD9A0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A67C52;
  color: #fff;
}
.mobile-nav {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'PT Serif', serif;
  padding: 11px 0;
  color: #374632;
  transition: color 0.18s, background 0.17s;
  width: 100%;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD9A0;
  color: #A67C52;
}

@media (max-width: 992px) {
  .main-nav {
    gap: 14px;
    font-size: 1rem;
  }
  header img { height: 40px; }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
}

/* ------------- HERO SECTION ------------- */
.hero {
  background: #FFD9A0;
  border-bottom: 2px solid #E6E2DC;
  padding: 0;
  margin-bottom: 60px;
}
.hero .container {
  min-height: 320px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
  padding: 58px 0;
}
.hero h1 {
  color: #374632;
  font-size: 2.6rem;
}
.hero p {
  font-size: 1.25rem;
  color: #374632;
}

/* ------------- FEATURES & CARDS (example: feature_grid, recipe_list) ------------- */
.feature_grid, .feature_list, .tip_grid, .recipe_list, .recipe_preview_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature_grid > div, .feature_list > div, .tip_grid > div, .recipe_list > div, .recipe_preview_grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(55,70,50,0.11);
  padding: 26px 20px 22px 20px;
  flex: 1 1 270px;
  min-width: 0;
  transition: box-shadow 0.19s, transform 0.17s;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature_grid > div:hover, .feature_list > div:hover, .tip_grid > div:hover, .recipe_preview_grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(166, 124, 82, 0.19);
  transform: translateY(-4px);
}
.feature_grid img, .feature_list img, .tip_grid img, .recipe_list img, .recipe_preview_grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: grayscale(15%) contrast(1.1) saturate(0.88);
}

/* CARD CONTAINER */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(55,70,50,0.10);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 5px 23px 0 rgba(166, 124, 82, 0.17);
  transform: translateY(-2px);
}

/* ------------- LAYOUT FLEX UTILITY CLASSES ------------- */
.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;
  align-items: center;
  gap: 20px;
  background: #FFF9F1;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(55,70,50,0.08);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .feature_grid, .feature_list, .tip_grid, .recipe_list, .recipe_preview_grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 10px;
  }
  .card, .feature_grid > div, .feature_list > div, .tip_grid > div, .recipe_preview_grid > div {
    width: 100%;
    min-width: 0;
  }
}

/* ------------- CTA BUTTONS ------------- */
.cta,
button.cta,
a.cta,
.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'PT Serif', serif;
  border-radius: 26px;
  font-size: 1.16rem;
  font-weight: bold;
  letter-spacing: .01em;
  padding: 13px 35px;
  cursor: pointer;
  border: none;
  background: #A67C52;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(166,124,82,0.08);
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.13s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD9A0;
  color: #374632;
  box-shadow: 0 7px 28px 0 rgba(55,70,50,0.11);
  transform: translateY(-2px);
}
button.secondary, .secondary {
  background: #fff;
  color: #374632;
  border: 2px solid #A67C52;
  border-radius: 24px;
  padding: 11px 22px;
  font-family: 'PT Serif', serif;
  font-weight: 600;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background 0.2s, color 0.19s, border-color 0.17s;
}
.secondary:hover, .secondary:focus {
  background: #A67C52;
  color: #fff;
  border-color: #A67C52;
}

/* ------------- SEARCH BAR & INPUTS ------------- */
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}
.search-bar input[type="text"] {
  padding: 11px 17px;
  border-radius: 7px;
  border: 1px solid #E6E2DC;
  font-size: 1rem;
  min-width: 0;
  background: #fff;
  color: #374632;
  transition: border-color 0.18s;
  flex: 1 1 auto;
}
.search-bar input[type="text"]:focus {
  border-color: #A67C52;
  background: #FFF9F1;
}
.search-bar button {
  padding: 11px 22px;
  border-radius: 7px;
  background: #A67C52;
  color: #fff;
  font-weight: bold;
  font-family: 'PT Serif', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #374632;
}

/* ------------- TABLES & DROPDOWNS ------------- */
select {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #E6E2DC;
  background: #fff;
  color: #374632;
  font-size: 1rem;
  transition: border 0.19s;
}
select:focus {
  border-color: #A67C52;
}
.dropdown_filters label {
  font-family: 'PT Serif', serif;
  color: #A67C52;
  margin-right: 6px;
}

/* ------------- FOOTER ------------- */
footer {
  width: 100%;
  background: #374632;
  color: #fff;
  padding: 56px 0 34px 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFD9A0;
  font-family: 'PT Serif', serif;
  font-size: 1.08rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
footer .text-section {
  font-size: 0.94rem;
  color: #fff;
}
@media (max-width: 768px) {
  footer {
    padding: 36px 0 22px 0;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    margin-bottom: 14px;
    align-items: flex-start;
  }
}

/* ------------- LISTS, UL/OL ------------- */
ul, ol {
  margin-left: 18px;
  margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 4px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #A67C52;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* ------------- MISC BLOCKS ------------- */
.text-section {
  margin-bottom: 18px;
  color: #374632;
  font-size: 1.04rem;
}
.company_info p, .company_info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.timeline ul {
  margin-left: 18px;
}
.timeline li {
  margin-bottom: 6px;
  color: #374632;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.mission_statement {
  background: #FFF9F1;
  border-left: 5px solid #A67C52;
  border-radius: 7px;
  padding: 17px 24px;
  margin-bottom: 16px;
  font-size: 1.08rem;
  color: #374632;
}
.values_list ul {
  margin-left: 10px;
}

/* ------------- TESTIMONIALS ------------- */
.testimonial_block {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: #FFF9F1;
  color: #374632;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(55,70,50,0.10);
  padding: 22px 20px 16px 20px;
  min-width: 250px;
  max-width: 360px;
  flex: 1 1 300px;
  font-size: 1.09rem;
}
.testimonial-card strong {
  color: #A67C52;
  font-weight: 700;
  font-family: 'PT Serif', serif;
}
@media (max-width: 600px) {
  .testimonial_block {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ------------- CATEGORY & FAQ ACCORDION ------------- */
.category_list ul, .categories_overview ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.category_list a {
  background: #FFD9A0;
  color: #374632;
  border-radius: 10px;
  padding: 9px 18px;
  transition: background 0.17s, color 0.15s;
  font-family: 'PT Serif', serif;
  font-size: 1.06rem;
}
.category_list a:hover, .category_list a:focus {
  background: #A67C52;
  color: #fff;
}
.accordion_faq h3 {
  font-size: 1.16rem;
  background: #FFD9A0;
  color: #374632;
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: background 0.14s;
}
.accordion_faq h3.active, .accordion_faq h3:focus {
  background: #A67C52;
  color: #fff;
}
.faq-answer {
  background: #FFF9F1;
  color: #374632;
  border-radius: 7px;
  padding: 10px 18px 13px 18px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  display: none;
  transition: max-height 0.16s;
}
.accordion_faq h3.active + .faq-answer {
  display: block;
}

/* ------------- COOKIES CONSENT BANNER + MODAL ------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0; z-index: 10000;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #E6E2DC;
  box-shadow: 0 -3px 16px rgba(55,70,50,0.13);
  padding: 18px 12px 14px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: transform 0.33s cubic-bezier(.7,0,.17,1);
}
.cookie-banner.hide {
  transform: translateY(200px);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 190px;
  color: #374632;
}
.cookie-banner__actions {
  display: flex; flex-direction: row; gap: 16px;
}
.cookie-banner button {
  min-width: 110px;
  border-radius: 23px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'PT Serif', serif;
  font-weight: 600;
  border: none;
  background: #A67C52;
  color: #fff;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.19s, color 0.14s;
}
.cookie-banner button.reject {
  background: #fff;
  color: #A67C52;
  border: 2px solid #A67C52;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #FFD9A0;
  color: #374632;
  border-color: #374632;
}
.cookie-banner button.settings {
  background: #FFD9A0;
  color: #374632;
  border: 2px solid #A67C52;
}
.cookie-banner button.accept {
  background: #A67C52;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus { opacity: .92; }
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(55,70,50, 0.64);
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
.cookie-modal-content {
  background: #fff;
  border-radius: 17px;
  padding: 38px 32px 30px 32px;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 4px 32px 0 rgba(55,70,50,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 13px;
  background: #FFD9A0;
  color: #374632;
  font-size: 1.5rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
  box-shadow: 0 1px 3px 0 rgba(166,124,82,0.07);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A67C52;
  color: #fff;
}
.cookie-categories {
  width: 100%;
  display: flex; flex-direction: column; gap: 18px;
}
.cookie-category {
  display: flex; align-items: center; gap: 16px;
}
.cookie-category .switch {
  margin-left: auto;
  position: relative;
  display: inline-block;
  width: 38px; height: 22px;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #e6e2dc;
  border-radius: 22px;
  transition: .2s;
}
.cookie-category .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 2px 4px 0 rgba(55,70,50,0.13);
}
.cookie-category .switch input:checked + .slider {
  background-color: #A67C52;
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-category strong {
  color: #374632;
  font-family: 'PT Serif', serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.cookie-category label {
  font-size: 1rem;
  color: #374632;
}
.cookie-category .essential {
  color: #A67C52;
  font-style: italic;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 15px;
}
.cookie-modal-btns button {
  border-radius: 19px;
  padding: 10px 22px;
  background: #A67C52;
  color: #fff;
  font-family: 'PT Serif', serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-btns button.secondary {
  background: #FFD9A0;
  color: #374632;
  border: 2px solid #A67C52;
}
.cookie-modal-btns button.secondary:hover, .cookie-modal-btns button.secondary:focus {
  background: #A67C52;
  color: #fff;
}
.cookie-modal-btns button:hover, .cookie-modal-btns button:focus { opacity: .92; }

@media (max-width:500px) {
  .cookie-modal-content { padding: 21px 3vw 20px 3vw; }
}

/* ------------- RESPONSIVE MEDIA QUERIES / VISUAL HIERARCHY ------------- */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero .content-wrapper { padding: 30px 0; }
  .section { padding: 24px 8px; }
  .company_info p { font-size: 0.93rem; }
}

/* ------------- VISUAL SPACING RULES ------------- */
.section, .card, .feature_grid > div, .feature_list > div, .tip_grid > div, .recipe_preview_grid > div, .testimonial-card {
  margin-bottom: 20px;
}

/* ------------- BUTTON & LINK ACTIONS ------------- */
a,button {
  transition: background 0.2s, color 0.2s, border-color 0.15s, box-shadow 0.2s, transform 0.12s;
}
a:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 3px #A67C5244;
  outline: 2px solid #A67C52;
}

/* ------------- MICRO-INTERACTIONS & HOVER EFFECTS ------------- */
.cta, .main-nav a, .category_list a, .secondary, .footer-nav a {
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.1s;
}
.cta:hover, .cta:focus, .category_list a:hover, .category_list a:focus { transform: translateY(-1.5px); }

/* ------------- CONFIRMATION & SUCCESS ------------- */
.confirmation {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #E4F3D8;
  border-radius: 8px;
  padding: 13px 19px;
  color: #374632;
  font-family: 'Open Sans', sans-serif;
  margin: 14px 0 20px 0;
  font-size: 1.1rem;
}
.confirmation img {
  height: 26px;
  width: 26px;
}

/* ------------- MODAL OVERLAY ACCESSIBILITY ------------- */
[aria-modal="true"]:focus {
  outline: 3px solid #A67C52;
}

/* ------------- CLEARFLOWS: NO CSS GRID OR COLUMNS! FLEXBOX ONLY ------------- */

/* FINAL OVERRIDES: Make sure nothing overlaps due to lack of gaps or spacing */
* {
  box-sizing: border-box;
}

/* END CSS */
