body {
    background-color: var(--surface-parchment);
    margin: 0;
    min-height: 100vh;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.7);
    color: white;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
}

.menu a {
    text-decoration: none;
    color: white;
    margin-left: 20px;
}

.tarsier-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.tarsier-hero-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 10%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.tarsier-hero-title {
    font-family: var(--heading-font-face);
    color: var(--accent-terracotta);
    font-size: 48px;
    margin: 0 0 16px;
}

.tarsier-intro {
    font-family: var(--main-font-face);
    color: var(--ink-cocoa);
    font-size: 18px;
    margin: 0;
}

.tarsier-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.tarsier-fact-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    padding: 24px;
    box-sizing: border-box;
}

.tarsier-fact-card h2 {
    font-family: var(--heading-font-face);
    color: var(--accent-terracotta);
    font-size: 22px;
    margin: 0 0 16px;
    text-align: center;
}

.tarsier-fact-card ul {
    list-style-type: circle;
    padding-left: 20px;
    margin: 0;
}

.tarsier-fact-card li {
    font-family: var(--main-font-face);
    color: var(--ink-cocoa);
    font-size: 14px;
    margin-bottom: 12px;
}

.tarsier-fact-card li:last-child {
    margin-bottom: 0;
}

.tarsier-links {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: var(--main-font-face);
    color: var(--ink-cocoa);
}

.tarsier-links a {
    color: var(--accent-terracotta);
}

.tarsier-link-button {
    display: inline-block;
    margin-top: 16px;
    text-decoration: none;
    width: auto;
    padding: 12px 28px;
    color: var(--ink-cocoa);
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 700px) {
    .tarsier-hero {
        flex-direction: column;
        text-align: center;
    }

    .tarsier-hero-title {
        font-size: 36px;
    }

    .tarsier-fact-card {
        width: 100%;
        max-width: 320px;
    }
}
