{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #d9631e 100%);
            min-height: 100vh;
            padding: 20px;
        }
        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .hero-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 40px;
        }

        .section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .section h2 {
            color: #728c4a
            font-size: 2em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f2ca52;
        }

        .tip-item {
            margin-bottom: 25px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #f2ca52;
        }

        .tip-item h3 {
            color: #f2ca52;
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .tip-item p {
            color: #bf751b;
            margin-bottom: 10px;
        }

        .tip-item ul {
            list-style: none;
            padding-left: 0;
        }

        .tip-item li {
            padding: 8px 0 8px 25px;
            position: relative;
            color: #a62121   }

        .tip-item li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f2ca52;
            font-weight: bold;
            font-size: 1.2em;
        }

        .motivational-item {
            margin-bottom: 25px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #d9631e;
        }

        .motivational-item h3 {
            color: #d9631e;
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .motivational-item ul {
            list-style: none;
            padding-left: 0;
        }

        .motivational-item li {
            padding: 8px 0 8px 25px;
            position: relative;
            color: #555;
        }

        .motivational-item li::before {
            content: "★";
            position: absolute;
            left: 0;
            color: #d9631e;
            font-size: 1.2em;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8em;
            }

            .content-grid {
                padding: 20px;
                gap: 20px;
            }

            .hero-image {
                height: 250px;
            }
        }
        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
        }

        /* Main Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* Page Title */
        .page-title {
            text-align: center;
            color: white;
            font-size: 2.5em;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Main Layout Grid */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Left Column - Tips */
        .left-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Center Column - Images */
        .center-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .center-image {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .center-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .image-caption {
            padding: 15px;
            text-align: center;
            color: #333;
            font-style: italic;
        }

        /* Right Column - Menu Info */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .tip-card {
            background: linear-gradient(135deg, #f2ca52 0%, #e0b840 100%);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-5px);
        }

        .tip-card h3 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.3em;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .tip-card p {
            color: rgba(255,255,255,0.95);
            font-size: 1em;
            margin: 0;
        }

        /* Menu Ideas Section */
        .menu-section {
            margin-bottom: 40px;
        }

        .menu-section h2 {
            color: white;
            font-size: 2em;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .menu-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .menu-card h3 {
            color: #728C4a;
            font-size: 1.5em;
            margin-bottom: 15px;
            text-align: center;
        }

        .menu-card ul {
            list-style: none;
            padding-left: 0;
        }

        .menu-card li {
            padding: 8px 0;
            color: #555;
            border-bottom: 1px solid #eee;
        }

        .menu-card li:last-child {
            border-bottom: none;
        }

        .menu-card li:before {
            content: "🍽️ ";
            margin-right: 8px;
        }

        /* Image Gallery */
        .gallery-section {
            margin-top: 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            padding: 20px;
            text-align: center;
            color: #333;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 1.8em;
            }

            header h1 {
                font-size: 1.3em;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav a {
                width: 200px;
                text-align: center;
            }

            .tips-list,
            .menu-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
         header {
            background: linear-gradient(135deg, #728C4a 0%, #8aa35d 100%);
            text-align: center;
            padding: 30px 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        header img {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
        }

        header h1 {
            color: white;
            font-size: 1.8em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            max-width: 900px;
            margin: 0 auto;
        }