/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    text-align: center;
  }
  
  header {
    background-color: #004080;
    color: white;
    padding: 40px 20px;
  }
  
  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 15px;
  }
  
  header h1 {
    margin-bottom: 5px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  
  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: 0.3s;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  /* === Pengalaman === */
  .experience-list {
    margin-top: 30px;
    text-align: left;
  }
  
  .experience-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #004080;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: background-color 0.3s;
  }
  
  .experience-item:hover {
    background-color: #eef6ff;
  }
  
  .experience-item h3 {
    margin-bottom: 5px;
  }
  
  .experience-item .year {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    display: block;
  }
  
  footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
  }
  
  a {
    color: #004080;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .experience-item {
      text-align: left;
    }
  }
  
