
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}
header {
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
.logo {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
.carousel {
    display: flex;
    overflow-x: scroll;
    gap: 10px;
    padding: 20px;
}
.carousel video {
    height: 200px;
}
section {
    padding: 20px;
}
.pengurus-img {
    max-width: 300px;
    display: block;
    margin: 10px 0;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}
