body {
    background-color: #f9f7f4;
    font-family: 'Vollkorn', serif;
    color: #343434;
    margin: 0;
}

:root {
    --background-main: #f9f7f4;
    --headline: #234223;
    --body: #343434;
    --brand-green: #1e9900;
    --accent-orange: #c75c00;
    --info-bg: #f4efe9;
}

a:link, a:visited {
    color: var(--brand-green);
    text-decoration: underline;
}

a:hover, a:active {
    color: var(--accent-orange);
    text-decoration: none;
}

#content {
    max-width: 980px;
    margin: 2em auto;
    padding: 2em 2em 1em 2em;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

#logo {
    text-align: center;
    margin-bottom: 1em;
}

#logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

#tagline {
    text-align: center;
    font-size: 1.3em;
    margin: 1em 0 2em 0;
    font-weight: bold;
    color: var(--headline);
    letter-spacing: 0.02em;
}

#flexContainer {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

.card {
    background: var(--info-bg);
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    padding: 2em 1.5em 1.5em 1.5em;
    flex: 1 1 380px;
    margin-bottom: 1em;
    border-left: 6px solid var(--accent-orange); /* Orange accent border */
}

.lang-ind {
    font-size: 0.95em;
    color: var(--accent-orange); /* Orange accent for language indicator */
    margin-bottom: 0.5em;
}

.brand {
    color: var(--brand-green); /* Green brand color */
}

h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.7em;
    color: var(--headline);
    margin-bottom: 0.3em;
}

h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.25em;
    color: var(--accent-orange); /* Orange accent for h2 */
    margin-bottom: 1em;
}

h3 {
    font-size: 1.1em;
    color: var(--brand-green);
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    font-family: 'Ubuntu', sans-serif;
    border-bottom: 2px solid var(--accent-orange); /* Orange underline */
    display: inline-block;
    padding-bottom: 2px;
}

ul {
    margin-bottom: 1em;
    padding-left: 1.2em;
}

li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

b {
    color: var(--accent-orange); /* Orange accent for bold text */
}

#contact.contact-card {
    text-align: center;
    background: var(--info-bg);
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    padding: 1em;
    margin: 2em auto 1em auto;
    max-width: 600px;
}

#contact h2 {
    color: var(--brand-green);
    margin-bottom: 0.7em;
}

#contact p {
    margin-bottom: 0.7em;
}

.social-icons {
    margin: 1em 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 0.3em;
    vertical-align: middle;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.social-icons a:hover {
    border-bottom: 2px solid var(--accent-orange); /* Orange underline on hover */
}

.cv-btn {
    display: inline-block;
    background: var(--accent-orange); /* Orange button */
    color: #fff !important;
    padding: 0.4em 1em;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 0.5em;
    transition: background 0.2s;
    border: none;
}

.cv-btn:hover {
    background: var(--brand-green);
    color: #fff !important;
}

#contact img {
    margin-top: 1.5em;
    max-width: 60px;
}

#nofo {
    font-family: 'Vollkorn', serif;
    font-weight: bold;
    font-style: italic;
    line-height: 1.6em;
    color: var(--brand-green);
    margin-top: 1.5em;
}

#siteinfo {
    font-size: 0.95em;
    color: var(--accent-orange); /* Orange accent for footer */
    text-align: center;
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #e0e0e0;
}

@media only screen and (max-width: 900px) {
    #flexContainer {
        flex-direction: column;
        gap: 0;
    }
    .card {
        margin-bottom: 2em;
    }
    #content {
        padding: 1em 0.5em;
    }
}
