/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

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

/* Headings */
h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

/* Sections */
section {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #e67e22;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.cta-button:hover {
    background: #d35400;
}

/* Grid Layouts */
.recipe-grid, .guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.recipe-item, .guide-item {
    text-align: center;
    padding: 15px;
    background: #f1f1f1;
    border-radius: 8px;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

/* FAQ */
details {
    background: #eef;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Subscribe Section */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="email"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background: #27ae60;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background: #219150;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #2c3e50;
    color: white;
}