body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #666666;
}

.buttons {
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    color: #333333;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #f0f0f0;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.values {
    list-style: none;
    padding: 0;
}

.values li {
    margin-bottom: 10px;
    font-weight: bold;
}

.project-card {
    border: 1px solid #dddddd;
    padding: 20px;
    border-radius: 4px;
    background-color: #fafafa;
}

.project-card h3 {
    margin-top: 0;
}

.status {
    color: #888888;
    font-style: italic;
}

.note {
    font-size: 0.9rem;
    color: #666666;
}

.cta {
    font-weight: bold;
    color: #999999;
}

.contacts {
    list-style: none;
    padding: 0;
}

.contacts li {
    margin-bottom: 10px;
}

.contacts a {
    color: #0066cc;
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
    color: #666666;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    h1 {
        font-size: 2rem;
    }
    .buttons {
        display: block;
    }
    .button {
        display: block;
        margin: 10px 0;
    }
}