        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { text-decoration: none; color: #2a6e3f; transition: color 0.3s; }
        a:hover { color: #1a4d2a; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(to right, #1a472a, #2a6e3f);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #ffd700, #ffec8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a { background: none; -webkit-text-fill-color: inherit; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background: #e9f5ec;
            border-radius: 8px;
            margin: 1rem 20px;
            font-size: 0.95rem;
        }
        .breadcrumb a { font-weight: 600; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2.5rem;
            margin: 2rem 20px;
        }
        .main-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: #f8fdf9;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a472a;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #2a6e3f;
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #2a6e3f;
        }
        h3 {
            font-size: 1.6rem;
            color: #3a8a4f;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fffacd;
            padding: 1.5rem;
            border-left: 4px solid #ffd700;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .emoji { font-size: 1.2em; }
        .feature-img {
            width: 80%;
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border: 5px solid #2a6e3f;
        }
        .feature-img img { transition: transform 0.5s; }
        .feature-img:hover img { transform: scale(1.03); }
        .search-box, .comment-form, .rating-form {
            background: #f0f9f4;
            padding: 1.8rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .search-box h3, .comment-form h3, .rating-form h3 { border-left: none; padding-left: 0; }
        form { display: flex; flex-direction: column; gap: 1.2rem; }
        input, textarea, select {
            padding: 14px;
            border: 2px solid #c8e6c9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a6e3f;
            box-shadow: 0 0 8px rgba(42, 110, 63, 0.3);
        }
        button {
            background: linear-gradient(to right, #2a6e3f, #3a8a4f);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(to right, #1a4d2a, #2a6e3f);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .stars { display: flex; gap: 10px; font-size: 1.8rem; color: #ffd700; cursor: pointer; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 20px 2rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        .copyright {
            text-align: center;
            padding: 2rem;
            background: #1a472a;
            color: white;
            border-radius: 12px 12px 0 0;
            margin-top: 2rem;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a472a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                z-index: 999;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .breadcrumb, .content-wrapper { margin: 1rem 10px; }
            .main-content, .sidebar { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .footer-links { grid-template-columns: 1fr; }
            .logo { font-size: 2rem; }
        }
