body {
    font-family: 'Georgia', serif;
    background-color: #f4f1e9;
    color: #3a3a3a;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    font-size: 3em;
    color: #4b5320;
    margin-bottom: 0.2em;
}

h2 {
    font-size: 1.5em;
    color: #556b2f;
    margin-top: 0;
    margin-bottom: 1em;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

.olive-animation-container {
    position: relative;
    width: 100px;
    height: 150px;
    margin: 2em auto;
}

.olive-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.olive-oil-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffd700; /* Gold color for olive oil */
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
    transition: height 2s ease-in-out;
}

.contact-info {
    margin-top: 2em;
    font-size: 0.9em;
}

.contact-info p {
    margin: 0.5em 0;
}
