.content-container {
    padding: 20px;
    background-color: #f9f9f9;
    min-height: 100vh;
  }
  
  h1 {
    color: #1f4e78;
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .detail-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .detail-box p {
    font-size: 16px;
    margin: 12px 0;
    line-height: 1.5;
  }
  
  .detail-box strong {
    color: #1f4e78;
  }
  
  button {
    background-color: #1f4e78;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #155f91;
  }
  
  a {
    text-decoration: none;
    color: #1f4e78;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
  }
  
  a:hover {
    text-decoration: underline;
  }
  