<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji';
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
        min-height: 100vh;
        color: #333;
    }

    header {
        background: white;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        color: #7f8c8d;
        font-weight: 300;
    }

    .icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    nav {
        max-width: 900px;
        margin: 3rem auto;
        padding: 0 1rem;
    }

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

    .menu-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        color: #2c3e50;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.2s, box-shadow 0.2s;
        border-top: 4px solid #e74c3c;
    }

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

    .menu-item h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .menu-item p {
        color: #7f8c8d;
        font-size: 0.95rem;
    }

    footer {
        text-align: center;
        padding: 2rem;
        color: #7f8c8d;
        font-size: 0.9rem;
    }

    footer a {
        color: #2c3e50;
        text-decoration: none;
        border-bottom: 1px solid #2c3e50;
    }

    footer a:hover {
        color: #e74c3c;
        border-color: #e74c3c;
    }
</style>