<style>
        /* Reset dan base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* Layout utama dengan flexbox */
        .container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, #2d5a27, #4a7c3a);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
            width: 100%;
        }
        
        .logo {
            height: 60px;
            width: auto;
            background-color: white;
            padding: 6px;
            border-radius: 6px;
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d5a27;
            font-weight: bold;
            font-size: 0.7rem;
            text-align: center;
            min-width: 70px;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .site-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
            padding: 0 0.5rem;
        }
        
        nav ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            gap: 0.8rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-size: 0.85rem;
        }
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Konten utama */
        .main-content {
            display: flex;
            flex: 1;
            max-width: 1200px;
            margin: 1.5rem auto;
            padding: 0 1rem;
            gap: 1.5rem;
        }
        
        /* Article (konten utama) */
        article {
            flex: 3;
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        article section {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        article h2 {
            color: #2d5a27;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #4a7c3a;
            font-size: 1.4rem;
        }
        
        article h3 {
            color: #4a7c3a;
            margin: 1.2rem 0 0.7rem;
            font-size: 1.1rem;
        }
        
        article p {
            margin-bottom: 1rem;
            text-align: justify;
            font-size: 0.95rem;
        }
        
        article ul, article ol {
            margin-left: 1.2rem;
            margin-bottom: 1rem;
        }
        
        article li {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        /* Aside (sidebar) */
        aside {
            flex: 1;
            background-color: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            align-self: flex-start;
        }
        
        .researcher-profile {
            text-align: center;
        }
        
        .researcher-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid #4a7c3a;
        }
        
        .researcher-info h3 {
            color: #2d5a27;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .researcher-info p {
            margin-bottom: 0.8rem;
            font-size: 0.85rem;
        }
        
        .plant-image {
            width: 100%;
            border-radius: 8px;
            margin-top: 1.2rem;
        }
        
        /* Footer */
        footer {
            background-color: #2d5a27;
            color: white;
            padding: 1.5rem 0;
            margin-top: 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-content p {
            margin-bottom: 0.8rem;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Tabel hasil penelitian */
        .table-container {
            width: 100%;
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        
        .research-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 500px;
        }
        
        .research-table th, .research-table td {
            border: 1px solid #ddd;
            padding: 0.7rem;
            text-align: left;
            font-size: 0.9rem;
        }
        
        .research-table th {
            background-color: #4a7c3a;
            color: white;
        }
        
        .research-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        /* Gambar dokumentasi */
        .documentation-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        
        .doc-image {
            flex: 1 1 calc(50% - 0.8rem);
            min-width: 140px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .doc-image img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .doc-image img:hover {
            transform: scale(1.15);
        }
        
        .doc-image p {
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.85rem;
        }
        
        /* Tombol PDF */
        .pdf-button {
            display: inline-block;
            background-color: #4a7c3a;
            color: white;
            padding: 0.7rem 1.2rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        
        .pdf-button:hover {
            background-color: #2d5a27;
        }
        
        /* Tombol TOP */
        .top-button {
            display: inline-block;
            background-color: #4a7c3a;
            color: white;
            padding: 0.5rem 1rem;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: bold;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .top-button:hover {
            background-color: #2d5a27;
            transform: translateY(-2px);
        }
        
        /* Responsif - Tablet */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
                gap: 1.5rem;
                margin: 1rem auto;
            }
            
            .header-content {
                padding: 0 0.5rem;
            }
            
            .logo-container {
                gap: 0.8rem;
            }
            
            .logo {
                height: 50px;
                min-width: 60px;
                font-size: 0.65rem;
                padding: 4px;
            }
            
            .site-title {
                font-size: 1.3rem;
            }
            
            nav ul {
                gap: 0.5rem;
            }
            
            nav a {
                font-size: 0.8rem;
                padding: 0.3rem 0.6rem;
            }
            
            article {
                padding: 1.2rem;
            }
            
            aside {
                padding: 1rem;
            }
            
            .researcher-photo {
                width: 100px;
                height: 100px;
            }
            
            .doc-image {
                flex: 1 1 calc(50% - 0.8rem);
            }
            
            .top-button {
                position: relative;
                margin-top: 1rem;
            }
        }
        
        /* Responsif - Mobile */
        @media (max-width: 480px) {
            .header-content {
                padding: 0 0.5rem;
            }
            
            .logo-container {
                gap: 0.5rem;
            }
            
            .logo {
                height: 40px;
                min-width: 50px;
                font-size: 0.6rem;
                padding: 3px;
            }
            
            .site-title {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
                width: 100%;
            }
            
            nav a {
                display: block;
                width: 100%;
                text-align: center;
                padding: 0.5rem;
            }
            
            .main-content {
                padding: 0 0.5rem;
                margin: 1rem auto;
            }
            
            article {
                padding: 1rem;
            }
            
            article h2 {
                font-size: 1.2rem;
            }
            
            article h3 {
                font-size: 1rem;
            }
            
            article p, article li {
                font-size: 0.9rem;
            }
            
            aside {
                padding: 0.8rem;
            }
            
            .researcher-photo {
                width: 90px;
                height: 90px;
            }
            
            .researcher-info h3 {
                font-size: 1rem;
            }
            
            .researcher-info p {
                font-size: 0.8rem;
            }
            
            .doc-image {
                flex: 1 1 100%;
            }
            
            .research-table th, .research-table td {
                padding: 0.5rem;
                font-size: 0.8rem;
            }
            
            .pdf-button, .top-button {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
            
            .footer-content p {
                font-size: 0.8rem;
            }
        }
        
        /* Untuk layar sangat kecil */
        @media (max-width: 360px) {
            .logo {
                height: 35px;
                min-width: 45px;
                font-size: 0.55rem;
            }
            
            .site-title {
                font-size: 1.1rem;
            }
            
            article {
                padding: 0.8rem;
            }
            
            aside {
                padding: 0.7rem;
            }
        }
    </style>