  h1,
  h2,
  h3,
  h4,
  p {
    margin-bottom: 1rem
  }

  .btn,
  .hero {
    text-align: center
  }

  .btn:hover,
  a {
    text-decoration: none
  }

  .btn,
  .faq-question,
  .logo {
    font-weight: 700
  }

  :root {
    --color-primary: #84994F;
    --color-secondary: #FFE797;
    --color-accent: #FCB53B;
    --color-cta: #08D9D6;
    --color-dark: #A72703;
    --color-text: #333;
    --color-light: #fff;
    --max-width: 100%
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
  }

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-light);
    max-width: var(--max-width);
    margin: 0 auto;
    overflow-x: hidden
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1.2;
    color: var(--color-dark)
  }

  h1 {
    font-size: 1.8rem
  }

  h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: .5rem;
    margin-top: 2rem
  }

  h3 {
    font-size: 1.3rem
  }

  h4 {
    font-size: 1.1rem
  }

  a {
    color: var(--color-primary)
  }

  a:hover {
    text-decoration: underline
  }

  ol,
  ul {
    margin: 0 0 1rem 1.5rem
  }

  .author-info h3,
  li {
    margin-bottom: .5rem
  }

  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-dark);
    color: #fff;
    padding: 8px;
    z-index: 100
  }

  .nav-menu a,
  .navbar {
    padding: 1rem;
    color: var(--color-light)
  }

  .skip-link:focus {
    top: 0
  }

  .navbar {
    position: sticky;
    top: 0;
    background: var(--color-primary);
    z-index: 90;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1)
  }

  .logo {
    font-size: 1.2rem;
    display: flex;
    align-items: center
  }

  .hero,
  .nav-menu {
    flex-direction: column
  }

  .logo-img {
    height: 30px;
    width: auto;
    margin-right: 10px
  }

  .nav-toggle {
    background: 0 0;
    border: none;
    color: var(--color-light);
    font-size: 1.5rem;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    display: none
  }

  .cta-group,
  .hero,
  .nav-menu a,
  .nav-menu.active {
    display: flex
  }

  .nav-menu a {
    border-top: 1px solid rgba(255, 255, 255, .1);
    min-height: 44px;
    align-items: center
  }

  .hero {
    position: relative;
    background: linear-gradient(rgba(132, 153, 79, .8), rgba(132, 153, 79, .9)), url('/images/hero-bg-mobile.webp') center/cover no-repeat;
    color: var(--color-light);
    padding: 3rem 1rem;
    min-height: 70vh;
    justify-content: center
  }

  .hero h1 {
    color: var(--color-light);
    font-size: 2.2rem;
    margin-bottom: 1rem
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items: center
  }

  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    min-width: 200px;
    transition: transform .2s, box-shadow .2s
  }

  .btn-primary {
    background: var(--color-cta);
    color: var(--color-text)
  }

  .btn-secondary {
    background: 0 0;
    color: var(--color-light);
    border: 2px solid var(--color-light)
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
  }

  .container {
    padding: 1rem;
    max-width: 768px;
    margin: 0 auto
  }

  section {
    margin-bottom: 3rem
  }

  .content-section {
    margin-bottom: 2.5rem
  }

  .content-section:last-child {
    margin-bottom: 0
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .9rem
  }

  td,
  th {
    padding: .75rem;
    text-align: left;
    border-bottom: 1px solid #ddd
  }

  th {
    background: var(--color-secondary)
  }

  .pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0
  }

  .faq-question,
  .floating-cta {
    display: flex;
    align-items: center
  }

  .cons,
  .pros {
    padding: 1.5rem;
    border-radius: 8px
  }

  .pros {
    background: rgba(132, 153, 79, .1);
    border-left: 4px solid var(--color-primary)
  }

  .cons {
    background: rgba(167, 39, 3, .05);
    border-left: 4px solid var(--color-dark)
  }

  .code-block,
  code {
    background: #f5f5f5
  }

  .cons ul,
  .pros ul {
    margin: 0;
    list-style: none
  }

  .cons li,
  .pros li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .75rem
  }

  .pros li:before {
    content: "✅";
    position: absolute;
    left: 0
  }

  .cons li:before {
    content: "⚠️";
    position: absolute;
    left: 0
  }

  code {
    padding: .2rem .4rem;
    border-radius: 4px;
    font-family: monospace
  }

  .code-block {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    overflow-x: auto
  }

  .testimonial {
    background: var(--color-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: italic;
    position: relative
  }

  .testimonial:before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: .3
  }

  .testimonial-author {
    text-align: right;
    margin-top: 1rem;
    font-weight: 700;
    font-style: normal
  }

  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-cta);
    color: var(--color-text);
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    z-index: 80;
    font-size: 1.5rem
  }

  .author-box,
  .faq-question {
    background: var(--color-secondary)
  }

  .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden
  }

  .faq-question {
    padding: 1rem;
    cursor: pointer;
    margin: 0;
    position: relative
  }

  .faq-question:after {
    content: '+';
    position: absolute;
    right: 1rem;
    font-size: 1.5rem
  }

  .faq-answer {
    padding: 1rem;
    display: none
  }

  .author-box,
  .disclaimer {
    padding: 1.5rem;
    margin: 2rem 0
  }

  .faq-item.active .faq-answer {
    display: block
  }

  .faq-item.active .faq-question:after {
    content: '-'
  }

  .author-box {
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: center
  }

  .author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover
  }

  .disclaimer {
    background: rgba(167, 39, 3, .05);
    border-radius: 8px;
    border-left: 4px solid var(--color-dark)
  }

  .btn,
  .faq-question,
  button {
    min-height: 44px
  }

  img {
    max-width: 100%;
    height: auto
  }

  .screenshot {
    width: 100%;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
  }

  a:focus,
  button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px
  }

  .table-container {
    overflow-x: auto;
    margin: 1rem 0
  }