        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d3b2a;
            color: #e8f5e9;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-image: linear-gradient(to bottom, #0d3b2a, #1b5e3a);
        }
        a {
            color: #81c784;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #c8e6c9;
            text-shadow: 0 0 5px #4caf50;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #388e3c, #2e7d32);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #43a047, #388e3c);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        header {
            background-color: #1a472a;
            padding: 15px 0;
            border-bottom: 3px solid #4caf50;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #c8e6c9;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #1b5e20, 4px 4px 5px rgba(0,0,0,0.7);
        }
        .logo span {
            color: #ff9800;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(76, 175, 80, 0.2);
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.8rem;
            color: #c8e6c9;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a472a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #2e7d32;
            font-size: 1.2rem;
        }
        .breadcrumb {
            background-color: #2e7d32;
            padding: 10px 20px;
            margin-top: 5px;
            border-radius: 0 0 10px 10px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #c8e6c9;
        }
        .breadcrumb span {
            color: #ffcc80;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid #4caf50;
        }
        h1 {
            font-size: 2.8rem;
            color: #c8e6c9;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px #000;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #a5d6a7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4caf50;
        }
        h3 {
            font-size: 1.5rem;
            color: #c8e6c9;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(76, 175, 80, 0.2), transparent);
            border-left: 5px solid #4caf50;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .warning {
            background: linear-gradient(90deg, rgba(255, 152, 0, 0.2), transparent);
            border-left: 5px solid #ff9800;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            margin: 30px auto;
            max-width: 800px;
            border: 3px solid #ff9800;
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
            overflow: hidden;
        }
        .feature-img img {
            transition: transform 0.7s;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .step-box {
            background-color: rgba(26, 71, 42, 0.7);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid #388e3c;
        }
        .step-number {
            display: inline-block;
            background-color: #ff9800;
            color: #1a472a;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.3rem;
        }
        aside {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #4caf50;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #ffcc80;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #4caf50;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #4caf50;
            border-radius: 50px 0 0 50px;
            background-color: #e8f5e9;
            color: #1b5e20;
            font-size: 1rem;
        }
        .search-box button {
            background: linear-gradient(135deg, #388e3c, #2e7d32);
            color: white;
            border: 2px solid #4caf50;
            border-left: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 10px 0;
        }
        .rating-widget .stars i {
            cursor: pointer;
            margin: 0 2px;
            transition: color 0.3s, transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #4caf50;
            background-color: #e8f5e9;
            color: #1b5e20;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            width: 100%;
        }
        .footer-links {
            background-color: #1a472a;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #4caf50;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            margin: 10px;
            padding: 12px 20px;
            border-radius: 10px;
            border: 1px solid #4caf50;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(76, 175, 80, 0.2);
            transform: translateY(-5px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background-color: #0d3b2a;
            color: #a5d6a7;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #2e7d32;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 0.95rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-grid {
                gap: 30px;
            }
            article, aside {
                padding: 25px;
            }
        }
