body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f7f3e8; /* Light beige for a natural feel */
    /* Consider a subtle, high-quality background image of a garden or seedlings */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #4a6d4a; /* Gardener green */
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

header h1 {
    margin: 0;
    font-size: 1.5em;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

header nav ul li a:hover {
    background-color: #355235; /* Darker green on hover */
}

.card {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

h2 {
    color: #4a6d4a;
    border-bottom: 2px solid #7f9a7f; /* A natural accent line */
    padding-bottom: 10px;
}

h3, h4 {
    color: #333;
}

.job p:last-child {
    margin-bottom: 0;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

a {
    color: #4a6d4a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #ddd;
    color: #555;
    font-size: 0.9em;
}
