* { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --honey: #F5B700;
    --honey-dark: #E09F00;
    --amber: #C08500;
    --forest: #2D5016;
    --leaf: #4A7C2C;
    --earth: #5C3A21;
    --cream: #FFF8E7;
    --dark: #2A2118;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
  }
  
  header {
    background: linear-gradient(135deg, #FFD447 0%, #F5B700 50%, #E09F00 100%);
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Honeycomb decoration */
  .hex {
    width: 60px;
    height: 34px;
    background: rgba(255,255,255,0.15);
    position: relative;
    display: inline-block;
    margin: 17px 5px;
  }
  .hex:before, .hex:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    left: 0;
  }
  .hex:before {
    bottom: 100%;
    border-bottom: 17px solid rgba(255,255,255,0.15);
  }
  .hex:after {
    top: 100%;
    border-top: 17px solid rgba(255,255,255,0.15);
  }
  
  .honeycomb-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.25;
    pointer-events: none;
  }
  .honeycomb-bg .hex { position: absolute; }
  .hex1 { top: 20px; left: 5%; }
  .hex2 { top: 100px; left: 15%; }
  .hex3 { top: 50px; right: 10%; }
  .hex4 { bottom: 40px; left: 30%; }
  .hex5 { bottom: 80px; right: 25%; }
  .hex6 { top: 200px; left: 60%; }
  
  header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.3);
  }
  
  header .subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--earth);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  header .intro {
    max-width: 750px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--dark);
    position: relative;
  }
  
  .btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: var(--forest);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    position: relative;
  }
  .btn:hover {
    background: var(--leaf);
    transform: translateY(-3px);
  }
  .btn-honey {
    background: var(--honey);
    color: var(--dark);
  }
  .btn-honey:hover { background: var(--honey-dark); }
  
  main { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }
  
  section {
    background: white;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(92, 58, 33, 0.1);
  }
  
  section h2 {
    color: var(--forest);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 4px solid var(--honey);
    display: inline-block;
  }
  
  section h3 {
    color: var(--earth);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
  }
  
  section p { margin-bottom: 1rem; }
  
  ul { margin: 1rem 0 1rem 1.5rem; }
  ul li { margin-bottom: 0.5rem; }
  
  .crops {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
  }
  .crop-tag {
    background: var(--honey);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .warning {
    background: linear-gradient(90deg, #8B0000, #B22222);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-weight: 600;
    border-left: 6px solid #FFD447;
  }
  
  .ethical {
    background: var(--forest);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-weight: 600;
    border-left: 6px solid var(--honey);
  }
  
  .quote {
    background: var(--cream);
    border-left: 6px solid var(--honey);
    padding: 1.5rem 2rem;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--earth);
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
  }
  
  .action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .action-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 5px solid var(--honey);
  }
  .action-card h3 { margin-top: 0; color: var(--forest); }

  .species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }

  .species-card {
    background: var(--cream);
    border: 1px solid #efdca7;
    border-radius: 12px;
    padding: 1rem 1.1rem;
  }

  .species-card h4 {
    color: var(--forest);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
  }

  .spec-list {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
  }

  .spec-list li {
    margin-bottom: 0.4rem;
    font-size: 0.96rem;
  }

  .impact-high {
    background: #fff0f0;
    border-left: 6px solid #b22222;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .impact-mid {
    background: #fff8e8;
    border-left: 6px solid #c08500;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
  
  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .stat-card {
    background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(224, 159, 0, 0.3);
  }
  .stat-card .number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--forest);
    display: block;
    margin-bottom: 0.4rem;
  }
  .stat-card .label {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .data-note {
    font-size: 0.94rem;
    color: #5a493c;
    margin-top: 0.8rem;
  }

  .chart-wrap {
    margin-top: 1.2rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #ecd699;
  }

  .bar-row {
    display: grid;
    grid-template-columns: 180px 1fr 70px;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 0.65rem;
  }

  .bar-label {
    font-weight: 600;
    color: var(--earth);
    font-size: 0.94rem;
  }

  .bar-track {
    width: 100%;
    height: 14px;
    background: #f0e4c8;
    border-radius: 999px;
    overflow: hidden;
  }

  .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #e09f00, #f5b700);
    border-radius: 999px;
  }

  .bar-value {
    text-align: right;
    font-weight: 700;
    color: var(--forest);
    font-size: 0.93rem;
  }

  .table-wrap {
    margin-top: 1.3rem;
    overflow-x: auto;
    border: 1px solid #e6d7aa;
    border-radius: 12px;
  }

  .data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: white;
  }

  .data-table th,
  .data-table td {
    border-bottom: 1px solid #efe5c7;
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
    font-size: 0.94rem;
  }

  .data-table th {
    background: #fff2cc;
    color: var(--dark);
    font-weight: 700;
  }

  .data-table tbody tr:nth-child(even) {
    background: #fffdf7;
  }
  
  .conclusion {
    background: linear-gradient(135deg, var(--forest), var(--leaf));
    color: white;
    text-align: center;
  }
  .conclusion h2 {
    color: var(--honey);
    border-bottom-color: white;
  }
  .conclusion p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 1.5rem;
  }
  
  /* Bee icon (pure CSS) */
  .bee-icon {
    display: inline-block;
    width: 40px;
    height: 30px;
    background: var(--honey);
    border-radius: 50% 50% 40% 40%;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
  }
  .bee-icon::before {
    content: '';
    position: absolute;
    top: 0; left: 8px; right: 8px; bottom: 0;
    background: repeating-linear-gradient(90deg, var(--dark) 0 5px, transparent 5px 10px);
    border-radius: 40%;
  }
  
  footer {
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.95rem;
  }
  footer a { color: var(--honey); text-decoration: none; }
  
  @media (max-width: 600px) {
    header { padding: 3rem 1rem 4rem; }
    section { padding: 1.5rem; }
    main { padding: 2rem 1rem; }
    .bar-row {
      grid-template-columns: 1fr;
      gap: 0.35rem;
    }
    .bar-value {
      text-align: left;
    }
  }
