*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7f4;
    color:#1f2a1f;
    line-height:1.5;
}

/* HEADER */

.topbar{
    background:#153b22;
    border-bottom:4px solid #b71c1c;
    padding:18px 20px;
}

.wrap{
    max-width:1200px;
    margin:0 auto;
}

.brand{
    color:#ffffff;
    font-size:32px;
    font-weight:900;
    line-height:1.1;
}

.brand a{
    text-decoration:none;
}

.tagline{
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    opacity:0.95;
    margin-top:4px;
}

/* HERO */

.hero{
    background:#ffffff;
    padding:40px 20px;
    border-bottom:1px solid #dfe5df;
}

.hero h1{
    margin:0 0 10px;
    font-size:54px;
    line-height:1.1;
    color:#153b22;
}

.hero p{
    margin:0 0 25px;
    font-size:20px;
    color:#4d5a4d;
}

.search{
    position:relative;
    max-width:900px;
}

.search input{
    width:100%;
    padding:18px 20px;
    font-size:20px;
    border:2px solid #c9d4c9;
    border-radius:12px;
    background:#fff;
}

.search input:focus{
    outline:none;
    border-color:#153b22;
}

/* CONTENT */

.content{
    padding:35px 20px;
}

.content h2{
    margin-top:0;
    color:#153b22;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-bottom:35px;
}

.card{
    background:#ffffff;
    border:1px solid #dde4dd;
    border-radius:12px;
    padding:22px;
    box-shadow:0 2px 4px rgba(0,0,0,0.04);
}

.stat-number{
    font-size:42px;
    font-weight:900;
    color:#153b22;
    margin-bottom:6px;
}

/* GRID */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:18px;
}

/* PLANT CARDS */

.result{
    background:#ffffff;
    border:1px solid #dfe5df;
    border-radius:12px;
    padding:18px;
}

.result:hover{
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.result h3{
    margin:0 0 10px;
    font-size:24px;
    line-height:1.2;
}

.result h3 a{
    color:#153b22;
    text-decoration:none;
}

.result h3 a:hover{
    text-decoration:underline;
}

.meta{
    color:#5f6d5f;
    font-size:15px;
    line-height:1.5;
}

/* STATUS BADGES */

.badge{
    display:inline-block;
    margin-top:14px;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.status-green{
    background:#dff3df;
    color:#155724;
}

.status-amber{
    background:#fff3cd;
    color:#856404;
}

/* PAGINATION */

.pagination{
    margin:40px 0;
    text-align:center;
}

.pagination a,
.pagination span{
    display:inline-block;
    margin:3px;
    padding:10px 14px;
    border-radius:8px;
    text-decoration:none;
    border:1px solid #d4dbd4;
    background:#fff;
    color:#153b22;
    font-weight:700;
}

.pagination .current{
    background:#153b22;
    color:#fff;
    border-color:#153b22;
}

/* PLANT PAGE */

.plant-title{
    font-size:44px;
    margin-bottom:20px;
    color:#153b22;
}

.info-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
}

.info-table th{
    width:220px;
    background:#eef4ee;
    text-align:left;
    padding:14px;
}

.info-table td{
    padding:14px;
}

.info-table th,
.info-table td{
    border-bottom:1px solid #dfe5df;
}

/* NOTICE */

.notice{
    background:#fff8dc;
    border-left:5px solid #d6a400;
    padding:16px;
    border-radius:8px;
    margin:20px 0;
}

/* FOOTER */

.footer{
    text-align:center;
    padding:40px 20px;
    color:#667366;
    font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

    .topbar{
        padding:16px 14px;
    }

    .brand{
        font-size:23px;
    }

    .tagline{
        font-size:13px;
    }

    .hero{
        padding:25px 15px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
    }

    .search input{
        font-size:18px;
        padding:15px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .result h3{
        font-size:22px;
    }

    .plant-title{
        font-size:32px;
    }

    .stat-number{
        font-size:34px;
    }
}