body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f7f7f7;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #4CAF50;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #4CAF50;
}

.hero {
    position: relative;
    height: 400px;
    background-color: #f7f7f7;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h2 {
    margin: 0 0 10px;
    font-size: 2em;
}

.hero-content p {
    margin: 0;
    font-size: 1.2em;
}

.benefits {
    padding: 40px 20px;
    text-align: center;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.recipe {
    margin-bottom: 40px;
}

.video-container {
    margin-bottom: 40px;
}

.video-container iframe {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.blog-post {
    margin-bottom: 40px;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

footer {
    background-color: #f7f7f7;
    padding: 20px 0;
    text-align: center;
    color: #333;
}