* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    padding: 15px 20px;
    position: relative;
}

.logo {
    width: 60px;
    border: 2px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    color: #555;
    line-height: 1.2;
}

.header h2 {
    text-align: center;
    flex: 1;
    font-size: 22px;
    font-weight: normal;
}

/* CONTAINER */
.container {
    display: flex;
    border: 1px solid #ccc;
    border-top: none;
    background: white;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    flex-shrink: 0;
    border-right: 1px solid #ccc;
}

.sidebar-section {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.sidebar-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.sidebar-section p {
    font-size: 13px;
    margin-bottom: 8px;
}

.btn-menu {
    display: block;
    width: 100%;
    padding: 9px 10px;
    margin-top: 8px;
    background: linear-gradient(to bottom, #9db3e0, #6b88cc);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.btn-menu:hover {
    opacity: 0.9;
}

/* CONTENT */
.content {
    flex: 1;
    padding: 20px;
    min-height: 450px;
}

/* DEFAULT CONTENT */
.content-panel {
    display: none;
}

.content-panel.active {
    display: block;
}

/* BERITA / DEFAULT */
.content-panel h2 {
    font-size: 18px;
    margin-bottom: 14px;
    text-align: center;
}

.content-panel h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.content-panel p {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 12px;
}

.content-panel img {
    width: 160px;
    display: block;
    margin: 10px 0;
    border-radius: 6px;
}

/* PRODUK GRID */
.produk-title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
}

.produk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #ccc;
}

.produk-card {
    border: 1px solid #ccc;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.produk-card h4 {
    font-size: 14px;
    margin-bottom: 14px;
}

.produk-card button {
    padding: 5px 12px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

/* FOOTER */
.footer {
    background: #666;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: 1.7;
}

.footer strong {
    font-size: 12px;
}
