* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f8f0;
            color: #333;
            line-height: 1.8;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #2e7d32;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffeb3b;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            background-color: #2e7d32;
            padding: 15px;
            margin-top: 15px;
            border-radius: 8px;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8f5e9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #666;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            height: fit-content;
        }
        h1 {
            font-size: 2.8rem;
            color: #2e7d32;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #388e3c;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #c8e6c9;
        }
        h3 {
            font-size: 1.5rem;
            color: #43a047;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .highlight {
            background-color: #e8f5e9;
            padding: 25px;
            border-left: 5px solid #2e7d32;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #1b5e20;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 25px 0;
            border: 3px solid #c8e6c9;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .form-section {
            background-color: #f9fdf9;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 2px dashed #a5d6a7;
        }
        .form-section h3 {
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #c8e6c9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2e7d32;
        }
        button {
            background-color: #2e7d32;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background-color: #1b5e20;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: #e8f5e9;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            background: #c8e6c9;
        }
        .web-link a {
            font-weight: bold;
            color: #1b5e20;
        }
        footer {
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-top: 50px;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content, aside {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .logo a {
                font-size: 2rem;
            }
        }
