body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    max-height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #388E3C;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero {
    background: #A5D6A7;
    text-align: center;
    padding: 3rem 1rem;
}

section {
    padding: 2rem;
    text-align: center;
}

section#produk .produk-item {
    margin: 1rem 0;
    background: #E8F5E9;
    padding: 1rem;
    border-radius: 5px;
}

form {
    margin: 1rem auto;
    max-width: 500px;
    text-align: left;
}

form label, form input, form textarea, form button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

form input, form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

section#laporan .laporan-item {
    margin: 1rem 0;
    background: #E8F5E9;
    padding: 1rem;
    border-radius: 5px;
}