* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f7f4;
            color: #2d2d2d;
            line-height: 1.8;
        }
        a {
            color: #2d5f27;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(135deg, #1a3a18, #2d5f27);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            color: #ffed4a;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        .nav-menu li a {
            color: #fff;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255,255,255,0.1);
            transition: background 0.3s, transform 0.2s;
        }
        .nav-menu li a:hover {
            background: #ffd700;
            color: #1a3a18;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #ffd700;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 20px auto 0;
            padding: 12px 20px;
            background: #fff;
            border-radius: 8px;
            font-size: 14px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
        }
        .breadcrumb a {
            color: #2d5f27;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #888;
        }
        .main-wrapper {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
        }
        .article-content {
            background: #fff;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        h1 {
            font-size: 2.4em;
            color: #1a3a18;
            line-height: 1.3;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 1.8em;
            color: #1a3a18;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            font-size: 1.3em;
            color: #2d5f27;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.1em;
            color: #444;
            margin: 18px 0 10px;
            font-style: italic;
        }
        p {
            margin-bottom: 16px;
        }
        .intro-box {
            background: #f8f6ee;
            border-left: 5px solid #b8860b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-size: 1.05em;
        }
        ul, ol {
            margin: 15px 0 20px 30px;
        }
        li {
            margin-bottom: 8px;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95em;
        }
        th, td {
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
            text-align: left;
        }
        th {
            background: #2d5f27;
            color: #fff;
        }
        tr:nth-child(even) {
            background: #f9f9f9;
        }
        .callout {
            background: #e8f5e9;
            border: 1px solid #c8e6c9;
            padding: 18px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .warning {
            background: #fff3e0;
            border: 1px solid #ffcc80;
            padding: 18px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .article-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 20px 0;
            border: 1px solid #e0e0e0;
        }
        .image-caption {
            text-align: center;
            font-size: 0.9em;
            color: #777;
            margin-top: -15px;
            margin-bottom: 20px;
        }
        .search-box {
            background: linear-gradient(135deg, #2d5f27, #1a3a18);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            color: #fff;
            margin: 30px 0;
        }
        .search-box h3 {
            color: #ffd700;
            margin-bottom: 10px;
        }
        .search-box input[type="text"] {
            width: 60%;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
        }
        .search-box button {
            background: #ffd700;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            color: #1a3a18;
            margin-left: 10px;
            font-size: 16px;
            transition: transform 0.2s;
        }
        .search-box button:hover {
            transform: scale(1.05);
        }
        .rating-section {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            margin: 30px 0;
        }
        .star-rating {
            direction: rtl;
            display: inline-flex;
            font-size: 30px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        .comment-section {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            margin: 30px 0;
        }
        .comment-section textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 14px;
            resize: vertical;
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        .btn-primary {
            background: #2d5f27;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }
        .btn-primary:hover {
            background: #1a3a18;
            transform: translateY(-2px);
        }
        .widget {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }
        .widget h3 {
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .widget ul {
            list-style: none;
            margin: 0;
        }
        .widget ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .site-footer {
            background: #1a3a18;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .footer-container a {
            color: #ffd700;
        }
        .site-footer friendly-link {
            display: block;
            margin: 15px 0;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: nowrap;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a3a18;
                padding: 15px 0;
                margin-top: 10px;
                border-radius: 8px;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .main-wrapper {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            .search-box input[type="text"] {
                width: 70%;
            }
            h1 {
                font-size: 1.8em;
            }
            .article-content {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .search-box input[type="text"] {
                width: 100%;
                margin-bottom: 10px;
            }
            .search-box button {
                width: 100%;
                margin-left: 0;
            }
        }
