        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #2c5e2e;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e3a1f;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2c5e2e, #3a7c3e);
            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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: #1e3a1f;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background-color: #142814;
        }
        nav {
            background-color: #1e3a1f;
            margin-top: 20px;
            border-radius: 10px;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            color: white;
            padding: 15px 25px;
            display: block;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background-color: #2c5e2e;
            border-radius: 5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            list-style: none;
            background-color: #1e3a1f;
            border-radius: 10px;
            margin-top: 10px;
            padding: 10px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px 20px;
            border-bottom: 1px solid #2c5e2e;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8f5e9;
            border-radius: 8px;
            margin-top: 10px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #2c5e2e;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        article {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #2c5e2e;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #3a7c3e;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e0e0e0;
        }
        h3 {
            font-size: 1.5rem;
            color: #4caf50;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #e8f5e9;
            padding: 20px;
            border-left: 5px solid #2c5e2e;
            margin: 25px 0;
            border-radius: 8px;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 8px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-container figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        .interaction {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }
        .interaction h2 {
            border-bottom: none;
        }
        form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #2c5e2e;
            outline: none;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.2s ease;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        button[type="submit"] {
            background-color: #2c5e2e;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            justify-self: start;
        }
        button[type="submit"]:hover {
            background-color: #1e3a1f;
            transform: translateY(-3px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .web-link:hover {
            background-color: #c8e6c9;
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 500;
            display: block;
        }
        footer {
            background-color: #1e3a1f;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        footer p {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form {
                width: 100%;
                max-width: 500px;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile {
                display: none;
            }
            .breadcrumb ol {
                font-size: 0.9rem;
            }
            article, .interaction {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .logo a {
                font-size: 2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
