body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}
header {
    text-align: center;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.header-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    left: 2rem;
}
.header-text {
    text-align: center;
    flex: 1;
}
h1 {
    color: #2c5e1a;
    margin-bottom: 0.1rem;
}
.subtitle {
    color: #666;
    font-size: 1.2rem;
}
.location {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
}
.content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}
.availability {
    background-color: #f0f7ed;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #2c5e1a;
}
.contact {
    text-align: center;
    margin-top: 2rem;
}
.email-link {
    color: #2c5e1a;
    text-decoration: none;
    font-weight: bold;
}
.email-link:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    font-size: 0.9rem;
}
.chickens-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-button {
    position: absolute;
    right: 2rem;
    background-color: #2c5e1a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}
.contact-button:hover {
    background-color: #1e4212;
} 