/* =====================================================
  CSS RESET & BASELINE
====================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  background: #F7F0E8;
  color: #1B3834;
  font-family: 'Source Sans Pro', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
a {
  color: #307233;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #235321;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.5em;
}
strong { font-weight: 600; }

/* ===============================
  BRAND COLORS AS CSS VARIABLES
================================ */
:root {
  --brand-primary: #307233;
  --brand-secondary: #1B3834;
  --brand-accent: #F7F0E8;
  --brand-earth1: #B8A384;
  --brand-earth2: #836953;
  --brand-green-pale: #E4EDDF;
  --brand-green-bright: #5CB85C;
  --brand-leaf: #379642;
  --brand-text: #1B3834;
  --brand-bg: #F7F0E8;
  --brand-white: #fff;
  --shadow-1: 0 2px 8px rgba(48, 114, 51, 0.10);
  --shadow-card: 0 4px 16px rgba(48, 114, 51, 0.11);
  --radius-card: 20px;
  --radius-btn: 100px;
  --radius-section: 48px 48px 16px 48px/40px 20px 48px 32px;
}

/* =========================
  TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.1;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.7rem;
  margin-top: 0.15em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.15rem;
}
p {
  margin-bottom: 1.1em;
}
.text-section ul,
.text-section ol {
  margin-bottom: 1em;
}
.text-section li {
  margin-bottom: 0.5em;
}

/* =============================
  CONTAINERS & LAYOUT BASICS
============================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow-1);
}
@media (max-width: 1024px) {
  .section { padding: 32px 10px; }
}

/* ==========================
  HEADER & NAVIGATION
========================== */
header {
  background: var(--brand-accent);
  border-bottom: 1.5px solid #D0CECC;
  box-shadow: 0 6px 20px rgba(48, 114, 51, 0.03);
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--brand-secondary);
  padding: 7px 12px;
  border-radius: 24px;
  background: transparent;
  text-decoration: none;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-green-pale);
  color: var(--brand-primary);
}
.cta-primary {
  background: var(--brand-primary);
  color: #fff !important;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px rgba(48, 114, 51, 0.06);
  padding: 10px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  text-decoration: none !important;
  transition: background 0.19s, box-shadow 0.18s, color 0.19s;
  margin-left: 2px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #235321;
  box-shadow: 0 6px 22px 0 rgba(48, 114, 51, 0.18);
  color: #fff !important;
}
.cta-secondary {
  background: var(--brand-green-pale);
  color: var(--brand-primary) !important;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  text-decoration: none !important;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(48,114,51,0.028);
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-primary);
  color: #fff !important;
}

/* Hamburger / mobile menu control */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-green-pale);
  color: var(--brand-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 4px 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: #fff;
  outline: none;
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f7f0e8ee;
  transition: transform 0.36s cubic-bezier(0.7,0.2,0.3,1);
  transform: translateX(100vw);
  z-index: 1200;
  box-shadow: 0 8px 38px rgba(48, 114, 51, 0.10);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--brand-primary);
  font-size: 2.2rem;
  border: none;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #235321;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 60px 22px 0 36px;
  gap: 22px;
}
.mobile-nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: none;
  border-radius: 8px;
  padding: 10px 0 10px 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-green-pale);
  color: var(--brand-primary);
}

/* ========================
  HERO, FEATURES, & CARDS
========================= */
.hero {
  background: linear-gradient(104deg, #E4EDDF 65%, #F7F0E8 100%);
  border-radius: 0 0 48px 48px/28px 28px 64px 64px;
  margin-bottom: 60px;
  padding: 60px 0 46px 0;
}
.hero .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 24px;
}
.hero h1 {
  color: var(--brand-primary);
}
.hero p {
  color: var(--brand-secondary);
  font-size: 1.17rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: flex-start;
  list-style: none;
  margin-top: 20px;
  padding: 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  width: 100%;
  max-width: 300px;
  background: var(--brand-green-pale);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 22px 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 10px 34px rgba(48,114,51,0.13);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
.feature-grid h3 {
  font-size: 1.13rem;
  color: var(--brand-primary);
}

.card-container, .card-grid, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 8px 32px #b8a3841a;
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.icon-box {
  flex: 1 1 300px;
  background: var(--brand-green-pale);
  border-radius: var(--radius-card);
  padding: 28px 20px 26px 23px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.icon-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
.icon-box:hover {
  box-shadow: 0 10px 24px rgba(55,150,66,0.13);
  transform: translateY(-4px) scale(1.03);
}

/* Text + Image (about, contact, etc) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* =========================
  USP, SERVICES, HIGHLIGHTS
========================= */
.service-highlights,
.service-list,
.case-study-list,
.certification-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.service-highlights li, .service-list li, .case-study-list li, .certification-list li {
  background: var(--brand-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  padding: 22px 18px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.service-highlights li:hover,
.service-list li:hover,
.case-study-list li:hover,
.certification-list li:hover {
  box-shadow: 0 10px 30px rgba(56,104,83,0.08);
  transform: translateY(-3px);
  background: #e4eddf;
}
.service-highlights img,
.certification-list img {
  width: 28px; height: 28px;
  margin-right: 12px;
}

/* =======================
  TESTIMONIALS/REVIEWS
====================== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 28px 18px 28px;
  min-width: 250px;
  max-width: 600px;
  margin-bottom: 22px;
  color: #1B3834;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  border-left: 7px solid var(--brand-primary);
  position: relative;
  transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(48, 114, 51, 0.17);
  transform: scale(1.015);
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
}

/* Cta-Banner */
.cta-banner {
  background: linear-gradient(105deg, #B8A384 60%, #F7F0E8 100%);
  border-radius: 48px 48px 20px 48px/32px 20px 40px 38px;
  margin-bottom: 60px;
  color: #fff;
  box-shadow: 0 6px 40px #b8a38466;
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .cta-primary {
  background: var(--brand-secondary);
  color: #fff !important;
}
.cta-banner .cta-primary:hover {
  background: var(--brand-primary);
}

/* =========================
  FOOTER
========================= */
footer {
  background: var(--brand-secondary);
  color: #fff;
  padding: 0;
  margin-top: 80px;
  border-radius: 32px 32px 0 0 / 36px 36px 0 0;
  box-shadow: 0 -2px 12px rgba(48, 114, 51, 0.09);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  opacity: 0.95;
  transition: color 0.19s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B8A384;
  opacity: 1;
}
footer .text-section {
  font-size: 1.03rem;
  opacity: 0.98;
}
footer img {
  height: 56px;
  width: auto;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
}

/* =========================*
  FAQ Accordion
*=========================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion h3 {
  background: var(--brand-green-pale);
  color: var(--brand-primary);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 1.13rem;
  margin-bottom: 0 !important;
  cursor: pointer;
  transition: background 0.18s;
}
.faq-accordion h3.active,
.faq-accordion h3:hover {
  background: #b8a38421;
}
.faq-accordion p {
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 10px rgba(48,114,51,0.03);
  margin: 0;
  padding: 12px 18px;
  font-size: 1rem;
  color: var(--brand-secondary);
  transition: max-height 0.23s, padding 0.17s;
}

/* =========================*
  COOKIE CONSENT BANNER
*=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbed;
  color: #1B3834;
  border-top: 2px solid #b8a38470;
  box-shadow: 0 -2px 24px #b8a38433;
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
  padding: 28px 16px 20px 16px;
  font-size: 0.97rem;
  animation: cookie-in 0.58s cubic-bezier(.2,1,.34,1);
}
@keyframes cookie-in {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 380px;
  max-width: 540px;
  min-width: 180px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 188px;
  align-items: flex-end;
  justify-content: center;
}
.cookie-btn {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 11px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: 4px;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-btn.secondary {
  background: #e4eddf;
  color: var(--brand-primary);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #b8a3844a;
  color: #1B3834;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  font-weight: 500;
  padding: 9px 24px;
  margin-top: 3px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #235321;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1b383488;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-in 0.35s;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 48px #3072332b;
  max-width: 420px;
  width: 90%;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  position: relative;
  animation: cookie-in 0.34s;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #235321; outline: none; }
.cookie-modal h2 { font-size: 1.32rem; color: var(--brand-primary); margin-bottom: 12px; }
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 6px;
  border-radius: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: var(--brand-text);
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #e4eddf;
  position: relative;
  outline: none;
  box-shadow: 0 1px 2px #30723322 inset;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-switch:checked {
  background: var(--brand-primary);
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 9px;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.21s;
}
.cookie-switch:checked:before {
  left: 20px;
  background: var(--brand-green-bright);
}
.cookie-category .always-active {
  color: #379642;
  font-size: 0.98rem;
  font-weight: 500;
}

/* =====================
  RESPONSIVE STYLING
===================== */
@media (max-width: 1240px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1024px) {
  .section {
    margin-bottom: 42px;
    padding: 26px 8px;
  }
  .features, .card-container, .card-grid, .usp-list {
    gap: 16px;
  }
  .footer-nav { gap: 8px; }
}
@media (max-width: 900px) {
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 800px) {
  .card-container,
  .card-grid,
  .feature-grid,
  .service-highlights, 
  .usp-list, 
  .service-list,
  .case-study-list,
  .certification-list {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
}
@media (max-width: 710px) {
  .hero {
    padding: 30px 0 18px 0;
    margin-bottom: 30px;
    border-radius: 0 0 30px 30px/18px 18px 34px 44px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .container { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 7px 12px 7px;
    font-size: 0.91rem;
    align-items: stretch;
  }
}

@media (max-width: 500px) {
  header .container {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .hero .container, .features, .section { padding-left: 6px; padding-right: 6px; }
  .card, .icon-box, .testimonial-card { padding: 16px 10px; }
  .cta-primary, .cta-secondary { padding: 10px 10px; }
}

/* =======================
   FORMS & INPUTS (STYLE)
======================== */
input, select, textarea {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  background: #fff;
  color: #2F3B2B;
  border-radius: 10px;
  border: 1.5px solid #b8a38460;
  padding: 12px 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px #b8a3840c;
  transition: border-color 0.18s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #e4eddf;
}
button, .button {
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ================
 VISUAL DETAILS
================= */
.section, .card, .testimonial-card, .icon-box {
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-card);
}
.feature-item, .about-preview, .about, .services-preview, .services, .usp, .team {
  margin-bottom: 60px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.background-organic {
  background: #e4eddfa1;
  border-radius: 110px 40px 90px 77px / 70px 70px 100px 44px;
  box-shadow: 0 7px 70px #30723310;
}

/* Animations */
.card, .icon-box, .testimonial-card {
  will-change: transform, box-shadow;
  transition: box-shadow 0.2s cubic-bezier(.23,1,.32,1), transform 0.18s cubic-bezier(.23,1,.32,1);
}

/* ===========
 Utility
=========== */
.hide-mobile { display: initial !important; }
@media (max-width: 990px) { .hide-mobile { display: none !important; } }
.hide-desktop { display: none !important; }
@media (max-width: 990px) { .hide-desktop { display: initial !important; } }

/* Accessibility */
:focus {
  outline: 2.5px solid var(--brand-primary);
  outline-offset: 1.5px;
}

/* ===========
 THANK-YOU PAGE
=========== */
.thank-you {
  background: linear-gradient(105deg, #e4eddf 65%, #f7f0e8 100%);
  border-radius: 48px 48px 16px 48px/40px 20px 48px 32px;
  padding: 50px 16px;
  text-align: center;
}
.thank-you .cta-primary {
  margin-top: 35px;
}

/* ===============
 BLOG / NEWSLETTER
================ */
.category-filter {
  margin-bottom: 20px;
  font-size: 1.03rem;
  color: var(--brand-secondary);
}
.category-filter a {
  color: var(--brand-primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted var(--brand-primary);
  margin: 0 8px 0 2px;
  transition: color 0.17s;
}
.category-filter a:hover { color: #235321; text-decoration: underline; }
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 34px;
  padding: 0;
}
.post-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 18px 16px 14px 16px;
  flex: 1 1 255px;
  min-width: 170px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.11s;
}
.post-list li:hover {
  box-shadow: 0 8px 32px #b8a38413;
  transform: translateY(-2px);
}

/* ===============
 NEWSLETTER SIGNUP
================= */
.newsletter-signup {
  border-radius: 44px 44px 22px 44px/34px 18px 38px 34px;
  background: #dde6d5;
  margin-bottom: 56px;
  box-shadow: 0 4px 30px #b8a38418;
  padding: 36px 0;
}
.newsletter-signup h2,
.newsletter-signup p, 
.newsletter-signup ul {
  color: #1b3834;
}
.benefits-list {
  list-style-type: disc;
  margin-left: 1.7ch;
  margin-bottom: 0;
}
.benefits-list li {
  margin-bottom: 0.5em;
}

/* ===============
 SPECIAL/UTILITIES
================= */
.location-map img {
  border-radius: 16px;
  box-shadow: 0 2px 10px #b8a38427;
  min-width: 130px;
  max-width: 300px;
}
.award-descriptions {
  margin-top: 18px;
  font-size: 1.01rem;
  color: var(--brand-primary);
}

/* ===============
 LEGAL PAGES
================= */
.legal {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 14px #b8a3841e;
  margin-bottom: 60px;
  padding: 36px 14px;
}
.legal h1 { color: var(--brand-primary); }
.legal .text-section h2 { color: var(--brand-secondary); margin-top: 1.2em; }

/* END */
