        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0c3b2e;
            --primary-green: #1a936f;
            --accent-gold: #d4af37;
            --accent-red: #bb3e03;
            --light-bg: #f4f4f4;
            --dark-text: #222;
            --light-text: #eee;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f9f9;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-green);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark), #1a5c48);
            color: var(--light-text);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-dark);
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .hero {
            background: linear-gradient(rgba(12, 59, 46, 0.85), rgba(26, 147, 111, 0.8)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .last-updated {
            background-color: var(--primary-dark);
            color: #ccc;
            padding: 0.8rem;
            text-align: center;
            font-size: 0.9rem;
            border-top: 3px solid var(--accent-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--primary-dark);
            margin-top: 1.8em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 4px solid var(--accent-gold);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-green);
            padding-left: 10px;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.8rem;
            color: #1a5c48;
        }
        h4 {
            font-size: 1.4rem;
            color: #333;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #e6f7f2, #cceee3);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-green), var(--primary-dark));
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, var(--accent-red), #9a2c02);
            transform: translateY(-3px);
        }
        .star-rating {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #ddd;
            margin: 10px 0;
        }
        .star-rating .fa-star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating .fa-star:hover,
        .star-rating .fa-star.active {
            color: var(--accent-gold);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 60px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            margin: 10px 0;
            padding: 12px 20px;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(212, 175, 55, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            nav ul {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 400px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            article {
                padding: 25px;
            }
        }
