        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f7f4;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2a7d5a;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a4d32;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a4d32 0%, #2a7d5a 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffde59;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .logo-text {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a4d32;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            list-style: none;
            width: 100%;
        }
        .nav-mobile li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a {
            color: white;
            display: block;
            padding: 1rem;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: #2a7d5a;
        }
        .breadcrumb {
            background-color: #e6f2ed;
            padding: 0.8rem 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #cce4d9;
        }
        .breadcrumb a {
            color: #2a7d5a;
        }
        .breadcrumb span {
            color: #666;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #888;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(to right, #e6f2ed, #ffffff);
            border-radius: 15px;
            border-left: 8px solid #2a7d5a;
        }
        h1 {
            color: #1a4d32;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 1rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .search-module {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2.5rem 0;
            text-align: center;
            border-top: 5px solid #ffde59;
        }
        .search-module h2 {
            color: #1a4d32;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #2a7d5a;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #2a7d5a, #1a4d32);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #1a4d32, #0f3d26);
        }
        .content-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2.5rem;
        }
        h2 {
            color: #1a4d32;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid #ffde59;
        }
        h3 {
            color: #2a7d5a;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #ffde5922;
            padding: 1.5rem;
            border-left: 5px solid #ffde59;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #1a4d32;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 1rem;
        }
        .interactive-module {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .rating-box, .comment-box {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .rating-box h2, .comment-box h2 {
            border-bottom: none;
            font-size: 1.8rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffde59;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #cce4d9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #2a7d5a;
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #2a7d5a, #1a4d32);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1a4d32, #0f3d26);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(26, 77, 50, 0.3);
        }
        .footer-links {
            background-color: #1a4d32;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.08);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffde59;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: white;
        }
        .site-footer {
            background-color: #0f3d26;
            color: #b3d9c6;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }
        .site-footer a {
            color: #ffde59;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .content-section { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-container { padding: 0 15px; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn {
                border-radius: 50px;
                width: 100%;
                margin-bottom: 10px;
            }
            .interactive-module {
                grid-template-columns: 1fr;
            }
            .article-header { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .content-section, .rating-box, .comment-box { padding: 1.5rem; }
            .logo a { font-size: 1.8rem; }
            .logo i { font-size: 2rem; }
        }
