*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    padding: 20px;
     }
        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #728c4a;
            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;
            }
        }