        * {
            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: #f9f9f9;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        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, #1a472a 0%, #2a623d 100%);
            color: #fff;
            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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffd700;
            transition: color 0.3s ease;
        }
        .logo a:hover {
            color: #fff;
        }
        .search-form {
            display: flex;
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #ffd700;
            color: #1a472a;
            border: none;
            padding: 12px 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #ffed4e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #fff;
        }
        nav {
            background: #2a623d;
            margin-top: 1rem;
            border-radius: 8px;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0;
        }
        .nav-links a {
            display: block;
            padding: 15px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin: 5px;
        }
        .nav-links a:hover {
            background: #ffd700;
            color: #1a472a;
            transform: translateY(-3px);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 1rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a472a;
            margin-bottom: 1rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #2a623d;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a7d4f;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .emphasis {
            font-weight: bold;
            color: #1a472a;
            font-size: 1.2rem;
        }
        .highlight {
            background: #ffd70022;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffd700;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .content-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .content-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .content-img:hover img {
            transform: scale(1.03);
        }
        .figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: #666;
            background: #f5f5f5;
        }
        .interaction {
            background: #f0f8f0;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid #2a623d;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1a472a;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #2a623d;
            outline: none;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .rating-stars span:hover {
            color: #ffed4e;
        }
        .btn-submit {
            background: linear-gradient(to right, #2a623d, #3a7d4f);
            color: #fff;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-submit:hover {
            background: linear-gradient(to right, #3a7d4f, #4a9960);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .web-links {
            background: #1a472a;
            padding: 2rem;
            margin-top: 3rem;
            border-radius: 10px 10px 0 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: #2a623d;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #ffd700;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #fff;
            font-weight: 600;
        }
        .web-link:hover a {
            color: #1a472a;
        }
        footer {
            background: #0d2818;
            color: #ccc;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
            border-top: 1px solid #2a623d;
            padding-top: 1rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .header-top { flex-direction: column; align-items: flex-start; }
            .search-form { max-width: 100%; margin: 15px 0; }
            .nav-links { flex-direction: column; display: none; }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            .web-links-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            article { padding: 0 1rem; }
            h1 { font-size: 2rem; }
            .interaction { padding: 1.5rem; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .logo a { font-size: 1.8rem; }
            .search-form input, .search-form button { padding: 10px; }
            .btn-submit { width: 100%; }
        }
