/* 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,
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.5;
  background-color: #F6F8F2;
  color: #1B461B;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ROOT COLORS */
:root {
  --twk-primary: #1B461B;
  --twk-secondary: #F6F8F2;
  --twk-white: #FFFFFF;
  --twk-accent: #89B442;
  --twk-accent-light: #A7C957;
  --twk-text: #234020;
  --twk-warning: #E48623;
  --twk-shadow: rgba(34, 60, 40, 0.10);
}

/**************************/
/* LAYOUT & CONTAINERS    */
/**************************/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Cards & Card Containers */
.card-container, .feature-grid, .service-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card {
  background: var(--twk-white);
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--twk-shadow);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 32px rgba(34, 85, 40, 0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--twk-white);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--twk-shadow);
  margin-bottom: 20px;
  max-width: 640px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--twk-text);
  font-size: 18px;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--twk-primary);
  font-weight: 600;
  font-size: 16px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**************************/
/* TYPOGRAPHY & HEADINGS  */
/**************************/

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--twk-primary);
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2.0rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--twk-primary);
}
p, ul, ol, li, table, th, td {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--twk-text);
  font-size: 1.04rem;
}
ul, ol {
  padding-left: 24px;
  margin-top: 8px;
}
ul li, ol li {
  margin-bottom: 8px;
}
a {
  color: var(--twk-accent);
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
  word-break: break-word;
}
a:hover, a:focus {
  color: var(--twk-primary);
}

/**************************/
/* BUTTON STYLES          */
/**************************/

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--twk-accent);
  color: var(--twk-white);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 1.07rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 8px var(--twk-shadow);
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--twk-primary);
  color: var(--twk-white);
  box-shadow: 0 4px 16px rgba(34, 85, 40, 0.12);
  transform: scale(1.025);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--twk-secondary);
  color: var(--twk-primary);
  border: 2px solid var(--twk-accent);
  border-radius: 999px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, border 0.18s, color 0.18s;
  margin-top: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--twk-accent-light);
  color: var(--twk-primary);
  border-color: var(--twk-primary);
}
/* For cookie banner special buttons */
.btn-cookie {
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 10px 0 0;
}

/**************************/
/* NAVIGATION             */
/**************************/
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--twk-white);
  padding: 0 16px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 5px 18px -12px var(--twk-shadow);
  position: relative;
  min-height: 72px;
  z-index: 100;
}
.main-nav a {
  display: flex;
  align-items: center;
  color: var(--twk-primary);
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--twk-accent-light);
  color: var(--twk-white);
}
.main-nav .btn-primary {
  margin-left: 18px;
  margin-top: 0;
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
  border-radius: 12px;
  background: none;
}

/**************************/
/* MOBILE NAVIGATION      */
/**************************/
.mobile-menu-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background: var(--twk-white);
  color: var(--twk-primary);
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 12px;
  right: 18px;
  box-shadow: 0 2px 12px var(--twk-shadow);
  z-index: 1201;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--twk-accent);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--twk-secondary);
  box-shadow: 0 2px 36px 0 var(--twk-shadow);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 20px 24px;
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: var(--twk-white);
  color: var(--twk-primary);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px var(--twk-shadow);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--twk-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.mobile-nav a {
  background: var(--twk-accent-light);
  color: var(--twk-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 14px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--twk-accent);
  color: var(--twk-white);
}

@media (max-width: 1020px) {
  .main-nav {
    font-size: 0.97rem;
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/**************************/
/* FOOTER                 */
/**************************/
footer {
  margin-top: 60px;
  background: var(--twk-white);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -3px 18px -12px var(--twk-shadow);
  padding: 38px 0 18px 0;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--twk-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.04rem;
  transition: color .16s;
}
.footer-nav a:hover {
  color: var(--twk-primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.footer-contact img {
  height: 36px;
  margin-bottom: 7px;
}
footer p {
  text-align: center;
  color: #51603A;
  font-size: 0.98rem;
}

/**************************/
/* PRICING & TABLES       */
/**************************/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 14px var(--twk-shadow);
  background: var(--twk-white);
}
.pricing-table thead {
  background: var(--twk-accent-light);
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  border-bottom: 1px solid #E4E9DD;
}
.pricing-table th {
  color: var(--twk-primary);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/**************************/
/* LISTS, FAQ, MAPS, ETC  */
/**************************/
.faq-list h3 {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
  margin-top: 18px;
  color: var(--twk-primary);
}
.faq-list p {
  margin-bottom: 8px;
  margin-top: 6px;
}
.map {
  margin-top: 14px;
  display: flex;
  align-items: center;
}
.map p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

/**************************/
/* SERVICES & FEATURES    */
/**************************/
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 340px;
  background: var(--twk-white);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--twk-shadow);
  padding: 24px 20px;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.feature:hover {
  box-shadow: 0 4px 24px rgba(34, 85, 40, 0.12);
}
.feature img {
  width: 40px; height: 40px;
  margin-bottom: 8px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service {
  background: var(--twk-white);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--twk-shadow);
  padding: 22px 20px;
  min-width: 210px;
  max-width: 325px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service h3 {
  color: var(--twk-accent);
}
.service p {
  font-size: 1.02rem;
}

.team-list {
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.team-member {
  background: var(--twk-white);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--twk-shadow);
  padding: 22px 18px;
  min-width: 185px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.team-member h3 {
  color: var(--twk-accent);
  font-size: 1.14rem;
  margin-bottom: 6px;
}

/**************************/
/* RESPONSIVE ADJUSTMENTS */
/**************************/

@media (max-width: 1040px) {
  .feature-grid, .service-grid, .team-list {
    flex-direction: row;
    gap: 16px;
  }
  .card-container {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .feature, .service, .team-member {
    min-width: 46vw;
    max-width: 100%;
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  h1{ font-size: 2.1rem; }
  h2{ font-size: 1.5rem; }
  .container { padding: 0 6px; }
  .content-wrapper, .card-content, .feature-grid, .service-grid, .team-list, .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service, .team-member {
    min-width: unset;
    width: 100%;
    margin-bottom: 14px;
    padding: 18px 7px;
  }
  .testimonial-card {
    padding: 16px 11px;
    font-size: 1rem;
    max-width: 100%;
  }
  footer {
    border-radius: 18px 18px 0 0;
    margin-top: 34px;
    padding: 18px 0 15px 0;
  }
}
@media (max-width: 480px) {
  .btn-primary, .btn-secondary {
    font-size: 0.99rem;
    padding: 13px 16px;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
  .feature, .service, .team-member {
    padding: 11px 4px;
  }
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 22px 5px;
    margin-bottom: 34px;
  }
}

/**************************/
/* COOKIE CONSENT BANNER  */
/**************************/

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--twk-white);
  box-shadow: 0 -3px 36px var(--twk-shadow);
  padding: 24px 16px 20px 16px;
  z-index: 3000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(.7, .1, .15, .92);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  font-size: 1.07rem;
  color: var(--twk-text);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 4px;
}
.cookie-banner .btn-cookie {
  background: var(--twk-accent);
  color: var(--twk-white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.21s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 1px 6px var(--twk-shadow);
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--twk-primary);
  color: var(--twk-white);
}
.cookie-banner .btn-settings {
  background: var(--twk-secondary);
  color: var(--twk-primary);
  border: 1.5px solid var(--twk-accent-light);
  font-weight: 500;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--twk-accent-light);
  color: var(--twk-primary);
}

/**************************/
/* COOKIE MODAL           */
/**************************/
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,55,20,0.37);
  z-index: 3200;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: var(--twk-white);
  border-radius: 20px;
  max-width: 420px;
  width: 92vw;
  padding: 33px 32px 22px 32px;
  box-shadow: 0 6px 40px var(--twk-shadow);
  z-index: 3210;
  position: relative;
  animation: cookieModalAppear 0.33s cubic-bezier(.7, .1, .15, .92);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieModalAppear {
  0% { transform: translateY(60px) scale(0.98); opacity: 0; }
  75% {transform: translateY(-10px) scale(1.02); opacity: 1; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 16px;
  background: var(--twk-secondary);
  color: var(--twk-primary);
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  cursor: pointer;
  padding: 4px 10px 4px 10px;
}
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.37rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--twk-accent-light);
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 1.08em;
}
.cookie-category label {
  font-weight: 600;
  color: var(--twk-primary);
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--twk-accent);
}
/* Essential is always enabled look */
.cookie-category.essential input[type="checkbox"] {
  accent-color: var(--twk-accent);
  pointer-events: none;
  opacity: 0.6;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 22px 6px 14px 10px;
  }
}

/**************************/
/* MICRO-INTERACTIONS     */
/**************************/

.card, .testimonial-card, .feature, .service, .team-member {
  transition: box-shadow 0.22s, transform 0.12s;
}
.card:focus-within, .testimonial-card:focus-within, .feature:focus-within, .service:focus-within, .team-member:focus-within {
  outline: 2px solid var(--twk-accent); 
  outline-offset: 2px;
}

/**************************/
/* VISUAL STYLING EFFECTS */
/**************************/

.card, .testimonial-card, .feature, .service, .team-member {
  border-radius: 20px;
  background: var(--twk-white);
  box-shadow: 0 4px 18px var(--twk-shadow);
}

.section {
  border-radius: 24px;
  background: var(--twk-secondary);
}

/**************************/
/* ICONS IN LISTS & TEXT  */
/**************************/
.text-section img {
  margin-right: 8px;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  position: relative;
  top: 2px;
}

/**************************/
/* MISCELLANEOUS          */
/**************************/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
/**************************/
/* END OF STYLES          */
/**************************/