/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #1f2937;
    color: #f9fafb;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 1px;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

/* Sections */
.bio {
    margin-bottom: 3rem;
}

.work {
    margin-bottom: 3rem;
}

.work-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
}

.work-title {
    font-size: 1rem;
}

.work-date {
    font-size: 0.9rem;
    color: #d1d5db;
    font-style: italic;
}

.links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.links li {
    margin-bottom: 0.5rem;
}

.links a {
    color: #f9fafb;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.links a:hover {
    opacity: 0.7;
}

.links i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 1.2rem;
    }

    .work-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}

a {
    color: #f9fafb;
}

/* Values and Accomplishments pages */
.values-summary,
.accomplishments-summary {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.values-list,
.accomplishments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.values-list span,
.accomplishments-list span {
    font-size: 0.9rem;
    color: #d1d5db;
    font-style: italic;
    letter-spacing: 0.5px;
}

.value-item,
.accomplishment-item {
    margin-bottom: 2.5rem;
}

.value-item h2,
.accomplishment-item h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: normal;
}

.value-item p,
.accomplishment-item p {
    color: #d1d5db;
    line-height: 1.7;
}

h3 {
    font-size: 1.3rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .values-list,
    .accomplishments-list {
        gap: 1rem;
        justify-content: flex-start;
    }
}