body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8f0;
    color: #333;
}
header {
    background-color: #c0392b;
    color: white;
    padding: 20px 0;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
nav {
    margin-top: 10px;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.hero {
    background-image: url('C:\Users\alex2\OneDrive\Documents\SEO\ChatGPT Image 6 oct. 2025, 15_20_29.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero h2 {
    font-size: 3em;
}
.content {
    padding: 20px;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.menu-item {
    background-color: #f9e6d3;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 15px;
    padding: 20px;
    width: calc(33% - 40px);
    box-sizing: border-box;
}
.menu-item h3 {
    margin-top: 0;
}
footer {
    background-color: #c0392b;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
