body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: whitesmoke;
    color: black;
    line-height: 1.6;
}

.header {
    background: linear-gradient(90deg, #090307, #ff5722);
    color: white;
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

.header-image {
    margin-right: 20px; 
    justify-content: center;
}

.header-image img {
    flex: 1;
    max-width: 100%;
    border-radius: 10px;
}

.header-title {
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.header-title h1 {
    text-align: center;
    font-size: 2.5em;
}

.header-title p {
    text-align: center; 
    font-size: 1em;
    font-style: italic;
}


.menu {
    display: flex;
    justify-content: center;
    background-color: skyblue;
    border-radius: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.menu ul li {
    color: white;
    float: left;
    padding: 10px;
    list-style: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu ul li a {
    text-decoration: none;
}

.menu ul li:hover {
    background-color: whitesmoke;
    border-radius: 350px;
    font-weight: bold;
    text-shadow: 0px 0px 1px;
}

.bungkus {
    display: flex;
    gap: 20px;
}

.sidebar {
    flex: 1;
    background-color: skyblue;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}

.sidebar h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 5px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li a {
    font-size: 1.5em;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    padding-left: 5px;
}

.content {
    flex: 4;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.content button {
    background: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.content button:hover {
    background: #e64a19;
}

.footer {
    background: linear-gradient(90deg, #090307, #ff5722);
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}
