/* Reset */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
background: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-box {
    height: 139px;
    width: 400px;
    background: #ffffff;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.logo-text h1 {
    margin: 0;
    font-size: 20px;
}

.logo-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #555;
}

.logo-box-right {
  text-align: right;
  font-size: 14px;
  color: #333;
}

/* Breadcrumb */
.breadcrumb {
    background: #ddd;
    padding: 8px 20px;
    font-size: 14px;
}

/* Layout */
.container {
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 355px;
    background: #eee;
    padding: 10px;
    min-height: calc(100vh - 120px);
}

.sidebar ul {
    list-style: none;
    padding-left: 15px;
}

/* Level 1 */
.sidebar li {
    margin-bottom: 3px;
    cursor: pointer;
    padding-left: 15px;
}


/* Level 2 */
.sidebar li ul {
    padding-left: 15px;
}

/* Level 3 */
.sidebar li ul li ul {
    padding-left: 15px;
}


.note {
    margin-top: 30px;
    padding: 10px;
    background: #e5e5d8;
    border: 1px solid #ccc;
    font-size: 13px;
}

/* Content */
.content {
    flex: 1;
    padding: 30px;
}

.content h2 {
    text-align: center;
    font-weight: normal;
}


.intro {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.image-placeholder {
    width: 200px;
    height: 120px;
    background: #6b8e23;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


a {
  text-decoration: none;
  color: #1a0dab;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #000088;
}

a:active {
  text-decoration: none;
}
