.page-header {
    display: flesx;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color-1);
    padding-bottom: 10px;
}







/* HAMBURGER */
.menu-toggle {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
}




.page-wrapper {
    display: flex;
    gap: 20px;
}

/* SIDEBAR */
.sidebar {
    width: 320px;
    background: var(--background-color-1);
    color: white;
    padding: 20px;
    border-radius: 6px;
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
}

/* GROUPS */
.sidebar-group {
    margin-bottom: 18px;
}

.sidebar-group:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0px;
}

.group-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-color-black);
    margin-bottom: 6px;
    border-left: 3px solid var(--accent-1);
    padding-left: 6px;
    font-weight: 500;
}

.sidebar a {
    display: block;
    color: var(--text-color-black-2);
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.sidebar a i {
    margin-right: 8px;
    width: 16px;
}

.sidebar a:hover {
    background: var(--primary-grad-100);
    color: #fff;
}

.sidebar a.active {
    background: var(--primary-grad-100);
    color: var(--text-2);
}

/* CONTENT */
.content-area {
    flex: 1;
}

.content-area h1 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primar-hover-black);
}

.section {
    border-bottom: 1px solid #ddd;

}

.section h2 {
    color: var(--primary-grad-0);
    /* border-left: 4px solid #2e7d32; */
    padding-left: 10px;
    font-weight: 500;
    padding: 20px 0px;
}

/* OVERLAY */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    /* light green */
    border-radius: 10px;
    transition: 0.3s;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #a5d6a7;
}

/* Firefox */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-1) rgba(255, 255, 255, 0.08);
}

/* Intro */
.section-intro {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 25px;
}

.image-grid-2 {
    display: flex;
    justify-content: center;
}

/* IMAGE CARD */
.image-card {

    border-radius: 6px;
    overflow: hidden;

    transition: 0.3s;
}

.image-card:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.image-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* CAPTION */
.img-caption {
    font-size: 0.85rem;
    color: var(--text-color-3);
    text-align: center;
}

/* SERVICE BOX */
.service-box {
    font-size: 1rem;
    padding: 15px;
    border-radius: 6px;
    background: var(--background-color-1);
}

.service-box h3 {
    margin-bottom: 10px;
    color: var(--text-color-black-2);
    font-weight: 500;
}

/* TABLE */


.service-table th,
.service-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.service-table th {
    background: var(--primary-grad-100);
    color: var(--text-color-5);
    font-weight: 500;
}

.service-table tr:hover {
    background: #f1f1f1;
}

/* GROUP ROW (A, B, C sections) */
.group-row {
    background: var(--background-color-2);
    color: var(--text-color-1);
    font-weight: 600;
}

/* SUB ROW (for insect categories) */
.sub-row td {
    font-size: 13px;
    color: #555;
    padding-left: 20px;
}

/* NOTES */
.note {
    font-size: 12px;
    color: var(--text-color-2);
}

/* SMALL TEXT */
.sub-text {
    font-size: 12px;
    color: #555;
}

/* TABLE IMPROVEMENT */
.service-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}





.service-table tr:hover {
    background: #f5f5f5;
}

.list-content {
    padding: 20px;
}

.service-list {
    padding-left: 20px;
    line-height: 1.8;
    font-size: 14px;
    color: #444;
}



.service-list li {
    background: var(--background-color-2);
    margin-bottom: 15px;
    padding: 15px 18px;
    border-left: 4px solid var(--primary-grad-100);
    border-radius: 6px;
    line-height: 1.6;
    font-size: 0.9rem;
    color: #333;
    transition: 0.25s ease;
}

/* GRID */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 15px;
}

/* CARD */
.facility-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
    position: relative;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ICON */
.facility-card .icon {
    font-size: 1.3rem;
    color: var(--primary-grad-100);
    margin-bottom: 10px;
}

/* TITLE */
.facility-card h3 {
    font-size: 0.9rem;
    color: var(--text-color-black-2);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
}

/* PDF LINK */
.pdf-link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-grad-100);
    text-decoration: none;
    font-weight: 500;
}

.pdf-link i {
    margin-right: 6px;
}

.pdf-link:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: inline-block;
    }

    .sidebar {
        position: fixed;
        left: -320px;
        top: 0;
        height: 100%;
        z-index: 100;
        border-radius: 0;
        transition: 0.3s;
    }

    .sidebar.active {
        left: 0;
    }

    .close-btn {
        display: block;
    }

    .overlay.active {
        display: block;
    }

    .page-wrapper {
        flex-direction: column;
    }
}

html {
    scroll-behavior: smooth;
}