        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0a5c36;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffde00;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo:hover {
            color: #fff;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        .search-box {
            display: flex;
            flex-grow: 0.5;
            max-width: 400px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #ffde00;
            color: #0a5c36;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #e6c700;
        }
        nav {
            background-color: #083c24;
            margin-top: 1rem;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            display: block;
            padding: 1rem 1.5rem;
            color: white;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .nav-desktop a:hover {
            background-color: #0a5c36;
        }
        .nav-desktop a i {
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            list-style: none;
            background-color: #083c24;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            color: white;
            border-bottom: 1px solid #0a5c36;
            display: block;
        }
        .nav-mobile a:hover {
            background-color: #0a5c36;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #0a5c36;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-top: 1rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #0a5c36;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #083c24;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffde00;
        }
        h3 {
            font-size: 1.5rem;
            color: #0a5c36;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-left: 4px solid #ffde00;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: bold;
            color: #0a5c36;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        .link-inline {
            color: #0a5c36;
            font-weight: bold;
            text-decoration: underline;
        }
        .link-inline:hover {
            color: #ffde00;
            background-color: rgba(10, 92, 54, 0.1);
            padding: 2px 4px;
            border-radius: 3px;
        }
        .interaction {
            margin: 3rem 0;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        .interaction h2 {
            border-bottom: none;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background-color: #0a5c36;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #083c24;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .stars i {
            color: #ccc;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .stars i.active,
        .stars i:hover {
            color: #ffde00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 2rem;
            background-color: #e9ecef;
            border-radius: 8px;
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 4px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #0a5c36;
            font-weight: bold;
        }
        footer {
            background-color: #083c24;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #ffde00;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-box {
                max-width: 100%;
                width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            article {
                padding: 0 1rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .schema-markup {
            display: none;
        }
