```css
/* Grundreset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Seite */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #333;
    min-height: 100vh;
}

/* Alle Links */
a {
  color: #EF7F1A;
  text-decoration: none;
}

a:hover {
  color: #e65100;
}


/* Überschriften */
h1,
h2,
h3 {
  color: #EF7F1A;
}


/* Hauptcontainer mit Schatten */
.container {
    width: 1100px;
    max-width: 95%;
    margin: 0 auto;
}

/* Sticky Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
	box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    padding: 15px 0;
}

/* Header Inhalt */
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #EF7F1A;
}

ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
	text-align: center;
}

li {
	list-style: none;
	padding: 0;
	margin-bottom: 5px;
	text-align: center;
}



.opening-hours {
    margin: 10px auto;       /* Tabelle horizontal zentrieren */
    border-collapse: collapse;
    font-size: 14px;
}

.opening-hours td {
    padding: 5px 15px;
    text-align: left;         /* Text in den Zellen linksbündig */
}


/* Normaler Text */
p {
  line-height: 1.6;
  margin-bottom: 20px;	
  color: #000000;
}


/* Hauptbereich */
main {
    background: #ffffff;
    margin: 30px auto;
    padding: 35px;
    border-radius: 10px;
    min-height: 500px;
	text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Mobile Anpassung */
@media (max-width: 700px) {

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo img {
        height: 50px;
    }
}
```
