        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6aaa64;
            --secondary: #c9b458;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #868e96;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .my-logo span {
            color: var(--secondary);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #f1f3f5;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: #555;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #666;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9db;
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            overflow: hidden;
        }
        .feature-img img {
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .interactive-section {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        form {
            display: grid;
            gap: 1.2rem;
            max-width: 600px;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(106, 170, 100, 0.2);
        }
        button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            justify-self: start;
        }
        button:hover {
            background-color: #5d9a57;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .related-links {
            background-color: #e9f5e9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2.5rem 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .related-links li {
            padding: 0.5rem 0;
        }
        .related-links a {
            color: #2c6e2c;
            display: flex;
            align-items: center;
        }
        .related-links a::before {
            content: '🔗';
            margin-right: 0.5rem;
        }
        .related-links a:hover {
            color: var(--dark);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: var(--light);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            background-color: #2a2a2a;
            padding: 1rem;
            border-radius: 6px;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--secondary);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .header-container { padding: 0 15px; }
            nav ul { gap: 1.2rem; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--dark);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: 0.5s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            nav ul.active {
                right: 0;
            }
            nav ul li {
                margin: 1rem 0;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            article {
                padding: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .my-logo { font-size: 1.8rem; }
            .feature-img { margin: 1.5rem auto; }
        }
