body {
    background: #fff;
    font-family: 'Fira Sans', Arial, sans-serif;
    color: #333;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-title {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 2.2rem;
    text-decoration: none;
}

nav {
    margin-top: 18px;
}

.menu {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.menu-item {
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 1.1rem;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.menu-item.active {
    text-decoration: underline;
}


.menu-item:hover {
    color: #000;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content {
    font-size: 1.3rem;
    color: #444;
    text-align: center;
    max-width: 700px;
    margin: 48px auto 48px auto;
    padding: 0 18px;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 18px 0 12px 0;
    background: #fafafa;
}

.footer-link {
    color: #bbb;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Fira Sans', Arial, sans-serif;
}

.footer-link:hover {
    color: #888;
}

.attributes-list {
    display: table;
    width: 100%;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 32px 32px 24px 32px;
    margin: 0 auto;
    text-align: left;
    min-width: 260px;
    max-width: 480px;
}

.attributes-list tr {
    border-bottom: 1px solid #eee;
    line-height: 2.2;
}

.attributes-list td {
    vertical-align: middle;
    padding: 12px 0;
    font-size: 1.1rem;
}

.attributes-list td:first-child {
    font-weight: 700;
    color: #222;
    width: 160px;
}

.attributes-list td:last-child {
    color: #444;
    word-break: break-word;
    padding-left: 16px;
}

.attributes-list a {
    color: #444;
    text-decoration: underline;
}

.attributes-list a:hover {
    color: #000;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
}

.project-item {
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 28px 28px 20px 28px;
    margin-bottom: 32px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    text-decoration: underline;
}

.project-title:hover {
    color: #000;
}

.project-desc {
    margin-top: 12px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}
