body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #f57c00;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}
header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

nav {
    background-color: #ff9800;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav ul li a:hover {
    text-decoration: underline;
}

.state-section {
    padding: 60px;
    margin: 60px auto;
    max-width: 1200px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.state-section h2 {
    color: #f57c00;
    border-bottom: 2px solid #f57c00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.dish {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dish img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    margin-right: 20px;
}

.dish h3 {
    margin: 0;
    font-size: 1.5em;
    color: #000000;
}

.dish p {
    margin: 5px 0;
    font-size: 1em;
}

.dish a {
    color: #f57c00;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

.dish a:hover {
    text-decoration: underline;
}

footer {
    background-color: #f57c00;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 40px;
}
