        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f5f0;
            background-image: linear-gradient(to bottom, #f8f5f0 0%, #e8e0d5 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a5c3d;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d4a55e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2a5c3d;
            color: #f8f5f0;
            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 {
            font-size: 2.2rem;
            font-weight: 800;
            font-family: 'Georgia', serif;
            color: #d4a55e;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .logo span {
            color: #f8f5f0;
        }
        .logo:hover {
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        nav ul {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: #f8f5f0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover {
            background-color: rgba(212, 165, 94, 0.2);
            color: #d4a55e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4a55e;
        }
        .breadcrumb {
            background-color: #e8e0d5;
            padding: 0.8rem 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #d4a55e;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #2a5c3d;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(42, 92, 61, 0.85), rgba(42, 92, 61, 0.9)), url('https://images.unsplash.com/photo-1543362906-acfc16c67564?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: #f8f5f0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #e8e0d5;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            background: rgba(248, 245, 240, 0.95);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .search-box h2 {
            color: #2a5c3d;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #d4a55e;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: #2a5c3d;
            color: #f8f5f0;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #1e452f;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            line-height: 1.8;
        }
        .article-content h2 {
            color: #2a5c3d;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #d4a55e;
            font-size: 2rem;
        }
        .article-content h3 {
            color: #5a3921;
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.4rem;
            margin-right: 0.5rem;
        }
        .highlight {
            background-color: #f0e9d7;
            border-left: 5px solid #d4a55e;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .tip-box {
            background-color: #e8f4ea;
            border: 1px solid #2a5c3d;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
        }
        .widget h3 {
            color: #2a5c3d;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-form button {
            width: 100%;
            background-color: #d4a55e;
            color: #fff;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .rating-form button:hover {
            background-color: #c2954a;
        }
        .comments-widget textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            min-height: 120px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: #2a5c3d;
        }
        .comment-date {
            font-size: 0.9rem;
            color: #777;
            margin-left: 1rem;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: #f0e9d7;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #2a5c3d;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #e2d6bc;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #2a5c3d;
            color: #f8f5f0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .footer-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-links div {
            flex: 1;
            min-width: 200px;
        }
        .footer-links h4 {
            color: #d4a55e;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #e8e0d5;
        }
        .footer-links a:hover {
            color: #d4a55e;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3d7555;
            font-size: 0.95rem;
            color: #b8c7bb;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2a5c3d;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: 8px;
                padding: 1rem;
            }
        }
