        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a1f0a;
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4CAF50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #8BC34A;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #1a472a, #0a1f0a);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFD700;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: #4CAF50;
            color: #000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a472a;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #2e7d32;
        }
        .nav-mobile a:hover {
            background-color: #4CAF50;
            color: #000;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #123524;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #8BC34A;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #123524;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #FFD700;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4CAF50;
            margin: 2rem 0 1rem;
            border-left: 5px solid #FFD700;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #8BC34A;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #2e7d32;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 6px solid #FFD700;
        }
        .highlight strong {
            color: #FFD700;
            font-size: 1.2rem;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #4CAF50;
            max-width: 90%;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #ccc;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: #0a291a;
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 2rem;
        }
        .sidebar h3 {
            color: #FFD700;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .feature-box {
            background-color: #1a472a;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .feature-box h4 {
            color: #8BC34A;
            margin-bottom: 1rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #f0f0f0;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #4CAF50;
            background-color: #123524;
            color: #fff;
        }
        .form-group button {
            background-color: #4CAF50;
            color: #000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .form-group button:hover {
            background-color: #8BC34A;
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating i {
            color: #FFD700;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background-color: #0a1f0a;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .web-link {
            background-color: #123524;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #1a472a;
        }
        .web-link a {
            color: #8BC34A;
            font-weight: 600;
            display: block;
        }
        .copyright {
            background-color: #06140a;
            text-align: center;
            padding: 2rem;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 2px solid #2e7d32;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            article, .sidebar {
                padding: 1.5rem;
            }
            .main-container {
                padding: 0 1rem;
            }
            .footer-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                padding: 2rem 1rem;
            }
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; color: #FFD700; }
        .emoji { font-size: 1.2rem; margin-right: 0.3rem; }
        .spacer { margin: 2rem 0; height: 1px; background-color: #2e7d32; }
