:root {
    --primary: #f5b700;
    --secondary: #3d2b1f;
    --accent: #fff9e6;
    --text: #2d2d2d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: var(--text);
    background-color: #fdfdfd;
    line-height: 1.6;
}

header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1736578147814-827a16bc52e8?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

h1 { font-size: 3.5rem; margin-bottom: 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.subtitle { font-size: 1.5rem; font-weight: 300; color: var(--primary); }

.container {
    max-width: 900px;
    margin: -50px auto 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

section { margin-bottom: 50px; }
h2 { color: var(--secondary); border-bottom: 3px solid var(--primary); display: inline-block; padding-bottom: 5px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: var(--accent);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary);
}

.harvest-info {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: bold;
    text-align: center;
    border: 1px dashed #ffeeba;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-card h3 { color: var(--primary); margin-top: 0; }

footer {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
    transition: transform 0.2s;
}

.cta-button:hover { transform: scale(1.05); }
