body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #343a40;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
}

.call-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #218838;
}

.info-banner {
    background-color: #ffc107;
    color: #343a40;
    text-align: center;
    padding: 2rem;
    border-bottom: 3px solid #e0a800;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-banner p {
    margin: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

main {
    padding: 2rem;
}

#menu {
    background-color: transparent;
    padding: 0;
}

#menu h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #343a40;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    color: #343a40;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: white;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.menu-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #495057;
}

.menu-item p {
    margin: 0.5rem 0;
    color: #6c757d;
    line-height: 1.6;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}