body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 75ch;
    text-align: justify;
    font-size: 1.2rem;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.main-content {
    width: 70%;
    padding: 2rem;
    background: #ffffff;
    box-sizing: border-box;
}

.sidebar {
    position: sticky;
    width: 30%;
    padding: 2rem;
    background: #e9e9e9;
    box-sizing: border-box;
}

.header {
    text-align: center;
    font-size: 1.75rem;
    margin: auto;
}

.navbar-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.navbar-table td {
    padding: 0.75rem;
    border: 1px solid #ccc;
    background: #fff;
}

.navbar-table a {
    color: #333;
    text-decoration: none;
}

.sidebar-link {
    margin-top: 1rem;
    position: absolute;
    text-align: right;
    bottom: 0;
    right: 0;
}

.sidebar-link a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.utility-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.utility-list a {
    text-decoration: none;
    color: inherit;
}

.utility-item {
    padding: 0.9rem 1rem;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.utility-item:hover {
    background: #ececec;
}

.construction-image {
    display: block;
    margin-left: 20%;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}