* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1C3A1C;
    background-color: #F0FFF0;
}

header {
    background: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(46, 139, 87, 0.3);
}

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

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #F0FFF0;
}

tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #90EE90;
}

main {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(to bottom, #F0FFF0, #90EE90);
    margin-bottom: 3rem;
    border-radius: 15px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    color: #1C3A1C;
    max-width: 600px;
    margin: 0 auto;
}

.featured-recipes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.recipe-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-content h3 {
    color: #2E8B57;
    margin-bottom: 0.5rem;
}

.lead-form {
    background: #90EE90;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.lead-form h2 {
    color: #1C3A1C;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem;
    border: 2px solid #228B22;
    border-radius: 5px;
    font-size: 1rem;
}

.btn {
    background: #2E8B57;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #3CB371;
}

.recipe-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.recipe-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(46, 139, 87, 0.1);
}

.recipe-item h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.recipe-item ul, .recipe-item ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.recipe-item img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-form {
    background: #90EE90;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #228B22;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

footer {
    background: #1C3A1C;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #90EE90;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .featured-recipes {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}