body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #f4f4f4;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E2A5E;
    padding: 10px 20px;
    border-radius: 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
}

h1 {
    margin: 0;
    color: white;
    font-size: 24px;
}

.toggle {
    display: none;
    margin-left: auto;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: block;
}

nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Responsiveness */
@media (max-width: 768px) {
    .toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }
}

.title {
    text-align: center;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: black;
}
.awalan, .isi {
    background-color: #fcfafa;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.title2 {
    background-color: #7C93C3;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: black;
}
footer {
    text-align: center;
    background-color: #1E2A5E;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    margin: 10px auto;
}

.logo {
    position: relative;
    width: 100%; 
    height: 200px;
    overflow: hidden;
    margin: auto; 
}

.logo figure {
    margin: 0;
    height: 100%; 
    width: 100%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.poto {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
}
.list {
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    width: 90%;
    max-width: 300px;
    background-color: #fcfafa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
table thead {
    background-color: #E1D7B7;
    color: black;
}
table thead th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
}
table tbody tr {
    border-bottom: 1px solid #ddd;
}
table tbody tr:nth-of-type(even) {
    background-color: #f2f2f2;
}
table tbody tr:hover {
    background-color: #f1f1f1;
}
table td {
    padding: 12px;
}
table tbody tr td:first-child {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title, .awalan, .isi, .title2 {
        padding: 10px;
    }
    .poto {
        width: 120px;
        height: 120px;
    }
    table {
        font-size: 14px;
    }
    .list {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .poto {
        width: 100px;
        height: 100px;
    }
    table {
        font-size: 12px;
    }
}
