* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(#00c6ff, #0072ff);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.top-header {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.top-header h1 {
    font-size: 24px;
    color: #0072ff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    stroke: #0072ff;
}

.menu-link {
    text-decoration: none;
    color: #0072ff;
    font-weight: bold;
    background: #e6f3ff;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.menu-link:hover {
    background: #cce7ff;
}

.container {
    background: #fff;
    max-width: 1000px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #00c6ff;
}

.judul h1 {
    font-size: 36px;
}

.deskripsi {
    font-size: 20px;
    color: #666;
}

.content {
    display: flex;
    gap: 30px;
}

.left-column,
.right-column {
    flex: 1;
}

h2 {
    font-size: 22px;
    color: #0072ff;
    margin-bottom: 10px;
}

.kontak {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kontak li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.kontak i {
    font-size: 20px;
    width: 25px;
    text-align: center;
    color: #00bfff;
}

.right-column p,
.left-column p {
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content {
        flex-direction: column;
    }
  }
  
