*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gd: #0D3E26;
      --gm: #145334;
      --gl: #1B6A43;
      --gp: #F1F9F4;
      --ac: #FAB818;
      --ach: #E09E0B;
      --wh: #ffffff;
      --ow: #FAFDFB;
      --td: #092617;
      --tm: #244C36;
      --tl: #527A63;
      --red: #FF4D4D;
    }
    body { font-family: 'Segoe UI', Roboto, Arial, sans-serif; color: var(--td); background: var(--ow); }
    a { text-decoration: none; color: inherit; }

    /* ── ANNOUNCEMENT BAR ── */
    .ann-bar {
      background: var(--ac); color: var(--gd); text-align: center;
      font-size: 13px; font-weight: 700; padding: 10px 16px;
      letter-spacing: 0.5px; text-transform: uppercase;
    }

    /* ── NAV ── */
    nav {
      background: var(--gd); display: flex; align-items: center;
      justify-content: space-between; padding: 0 40px; height: 75px;
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .logo-img-wrap { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .logo:hover .logo-img { transform: scale(1.05); }
    .nav-links { display: flex; gap: 24px; list-style: none;  align-items: center; }
    .nav-links a { color: #D1EBE0; font-size: 14px; font-weight: 600; transition: color .2s; padding: 6px 0; position: relative; }
    .nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--ac); transition: width .3s cubic-bezier(.16,1,.3,1); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--ac); }
    .nav-icons { display: flex; gap: 20px; align-items: center; }
    .nav-icons a { color: #D1EBE0; font-size: 22px; position: relative; display: flex; align-items: center; }
    .cbadge { position: absolute; top: -8px; right: -10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { width: 25px; height: 3px; background: white; transition: 0.3s; }

    /* ── NAV DROPDOWN ── */
    .nav-dropdown { position: relative;}
    .nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
    .nav-dropdown > a::after { content: '' !important; display: inline-block !important; position: static !important; width: 0 !important; height: 0 !important; border-left: 4px solid transparent !important; border-right: 4px solid transparent !important; border-top: 5px solid #D1EBE0 !important; border-bottom: none !important; background: none !important; margin-left: 2px !important; bottom: auto !important; left: auto !important; transition: transform .2s !important; vertical-align: middle !important; }
    .nav-dropdown:hover > a::after, .nav-dropdown.open > a::after { transform: rotate(180deg); border-top-color: var(--ac); }
    .nav-dropdown > a.active-parent { color: var(--ac) !important; }
    .dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #1a5c26; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 8px 0; min-width: 180px; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
    .nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li { list-style: none; }
    .dropdown-menu li a { display: block; padding: 10px 18px; color: #D1EBE0 !important; font-size: 13px; font-weight: 600; white-space: nowrap; transition: background .18s, color .18s; border-bottom: none !important; pointer-events: auto !important; }
    .dropdown-menu li a::after { display: none !important; }
    .dropdown-menu li a:hover, .dropdown-menu li a.active { background: rgba(250,184,24,0.12); color: var(--ac) !important; }

    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 75px; left: 0; width: 100%; background: var(--gd); padding: 20px; border-top: 1px solid #1a5c26; justify-content: flex-start; }
      .nav-links.active { display: flex; }
      .nav-links li { width: 100%; text-align: left; }
      .dropdown-menu { position: static; transform: none; background: rgba(255,255,255,0.07); box-shadow: none; border: none; border-radius: 0; padding: 0; min-width: unset; display: none; }
      .nav-dropdown.open .dropdown-menu { display: block; }
    }

    /* ── PAGE HEADER ── */
    .page-header {
      background: linear-gradient(135deg, var(--gd) 0%, var(--gm) 100%);
      padding: 60px 40px; text-align: center; color: #fff; position: relative; overflow: hidden;
    }
    .page-header::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .page-header h1 { font-size: 42px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; position: relative; animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) both; }
    .page-header h1 span { color: var(--ac); }
    .page-header p { font-size: 15px; color: #BCE2CE; max-width: 560px; margin: 0 auto; position: relative; animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) .1s both; }

    /* ── BLOG SECTION ── */
    .blog-section { max-width: 1300px; margin: 0 auto; padding: 50px 40px; }

    /* Category Filter Pills */
    .cat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
    .cat-pill { background: #fff; border: 2px solid rgba(13,62,38,0.12); border-radius: 30px; padding: 8px 20px; font-size: 13px; font-weight: 700; color: var(--tm); cursor: pointer; transition: all .2s; }
    .cat-pill:hover, .cat-pill.active { background: var(--gd); color: #fff; border-color: var(--gd); }

    /* Blog Grid */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

    /* Blog Card */
    .blog-card {
      background: #fff; border: 1px solid rgba(13,62,38,0.08); border-radius: 18px;
      overflow: hidden; transition: all .3s ease; cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(13,62,38,0.10); border-color: var(--gl); }
    .blog-card.hidden { display: none; }

    .card-img-wrap { position: relative; overflow: hidden; height: 200px; background: var(--gp); }
    .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
    .blog-card:hover .card-img-wrap img { transform: scale(1.07); }
    .card-cat-tag { position: absolute; top: 14px; left: 14px; background: var(--ac); color: var(--gd); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .card-cat-tag.health { background: #27ae60; color: #fff; }
    .card-cat-tag.recipe { background: var(--red); color: #fff; }
    .card-cat-tag.tips { background: var(--gd); color: var(--ac); }

    .card-body { padding: 20px 22px 24px; }
    .card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--tl); font-weight: 600; margin-bottom: 10px; }
    .card-meta span { display: flex; align-items: center; gap: 4px; }
    .card-title { font-size: 17px; font-weight: 800; color: var(--gd); line-height: 1.4; margin-bottom: 10px; }
    .card-excerpt { font-size: 13px; color: var(--tm); line-height: 1.7; margin-bottom: 16px; }

    /* Read More Button */
    .read-more-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent; border: 2px solid var(--gl); color: var(--gl);
      padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 800;
      cursor: pointer; transition: all .2s; text-transform: uppercase; letter-spacing: .4px;
    }
    .read-more-btn:hover { background: var(--gd); color: var(--ac); border-color: var(--gd); }

    /* ── SIDE PANEL (Read More Detail Drawer) ── */
    .side-overlay {
      position: fixed; inset: 0; background: rgba(9, 38, 23, 0.55);
      opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
      z-index: 998;
    }
    .side-overlay.open { opacity: 1; visibility: visible; }

    .side-panel {
      position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
      background: var(--ow); z-index: 999;
      box-shadow: -10px 0 40px rgba(9,38,23,0.25);
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.16,1,.3,1);
      display: flex; flex-direction: column;
    }
    .side-panel.open { transform: translateX(0); }

    .side-panel-head {
      background: linear-gradient(135deg, var(--gd) 0%, var(--gm) 100%);
      padding: 22px 24px; position: relative; flex-shrink: 0;
    }
    .side-panel-cat { display: inline-block; background: var(--ac); color: var(--gd); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
    .side-panel-title { font-size: 19px; font-weight: 900; color: #fff; line-height: 1.4; padding-right: 30px; }
    .side-panel-meta { display: flex; gap: 12px; font-size: 12px; color: #BCE2CE; font-weight: 600; margin-top: 10px; }
    .side-panel-close {
      position: absolute; top: 20px; right: 20px; width: 32px; height: 32px;
      border-radius: 50%; background: rgba(255,255,255,0.12); border: none;
      color: #fff; font-size: 16px; cursor: pointer; display: flex;
      align-items: center; justify-content: center; transition: background .2s;
      flex-shrink: 0;
    }
    .side-panel-close:hover { background: var(--ac); color: var(--gd); }

    .side-panel-body { padding: 24px 26px 40px; overflow-y: auto; flex: 1; }
    .side-panel-body::-webkit-scrollbar { width: 6px; }
    .side-panel-body::-webkit-scrollbar-thumb { background: rgba(13,62,38,0.18); border-radius: 6px; }
    .side-panel-body img.side-panel-img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
    .side-panel-body p { font-size: 14px; color: var(--tm); line-height: 1.85; margin-bottom: 14px; }
    .side-panel-body h4 { font-size: 15px; font-weight: 800; color: var(--gd); margin: 16px 0 8px; }
    .side-panel-body ul { padding-left: 18px; margin-bottom: 14px; }
    .side-panel-body ul li { font-size: 14px; color: var(--tm); line-height: 1.7; margin-bottom: 7px; }
    .side-panel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
    .side-panel-tag { font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; background: var(--gp); color: var(--tm); }

    @media (max-width: 600px) {
      .side-panel { width: 100%; max-width: 100%; }
    }

    /* Reveal animation */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

    @media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .blog-grid { grid-template-columns: 1fr; }
      nav, .blog-section, footer { padding-left: 20px; padding-right: 20px; }
      .page-header h1 { font-size: 28px; }
    }

    /* ── FOOTER ── */
    footer { background: #062013; padding: 60px 40px 0; color: #A4C7B5; }
    .ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
    .ft-brand p { font-size: 14px; line-height: 1.7; max-width: 250px; margin-top: 14px; }
    footer h5 { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a { font-size: 14px; color: #A4C7B5; transition: color .2s; }
    footer ul li a:hover { color: var(--ac); }
    .nl-row { display: flex; margin-top: 12px; }
    .nl-row input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; padding: 12px 16px; border-radius: 8px 0 0 8px; font-size: 14px; outline: none; }
    .nl-row input::placeholder { color: rgba(255,255,255,0.3); }
    .nl-row button { background: var(--ac); color: var(--gd); border: none; padding: 0 22px; border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 800; cursor: pointer; text-transform: uppercase; transition: background .2s; }
    .nl-row button:hover { background: var(--ach); }
    .pay-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
    .pchip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #C2DEC2; font-weight: 600; }
    .social-row { display: flex; gap: 15px; align-items: center; }
    .soc-a img { width: 20px; height: 20px; object-fit: contain; transition: 0.3s; }
    .soc-a:hover img { transform: scale(1.15); }
    .ft-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .ft-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .ft-tagline { font-size: 14px; font-weight: 700; color: #A4C7B5; font-style: italic; }
    .ft-brand-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
    .ft-logo-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; }
    .ft-brand-head h5 { margin-bottom: 0; font-size: 15px; letter-spacing: 1px; }
    @media (max-width: 1024px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .ft-grid { grid-template-columns: 1fr; } }