        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c3b2e;
            color: #f5f5f5;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: #1a5c48;
            padding: 15px 0;
            border-bottom: 3px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #ffd700;
            color: #0c3b2e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #164a3a;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li::after {
            content: '>';
            margin-left: 10px;
            color: #aaa;
        }
        .breadcrumb li:last-child::after {
            content: '';
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1a5c48;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #ffd700;
            margin-top: 40px;
            margin-bottom: 15px;
            border-left: 5px solid #ffd700;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #d4af37;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #b8860b;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #164a3a;
            padding: 20px;
            border-left: 5px solid #ffd700;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .sidebar {
            background-color: #164a3a;
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box input {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 2px solid #ffd700;
            background-color: #0c3b2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background-color: #ffd700;
            color: #0c3b2e;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #e6c200;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            border-radius: 15px;
            border: 5px solid #ffd700;
            box-shadow: 0 8px 16px rgba(0,0,0,0.4);
        }
        .comment-section, .rating-section {
            background-color: #164a3a;
            padding: 25px;
            border-radius: 15px;
            margin-top: 40px;
        }
        .comment-section h3, .rating-section h3 {
            color: #ffd700;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border-radius: 8px;
            border: 2px solid #ffd700;
            background-color: #0c3b2e;
            color: #fff;
            font-size: 1rem;
        }
        button[type="submit"] {
            padding: 12px 25px;
            background-color: #ffd700;
            color: #0c3b2e;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #e6c200;
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ccc;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover, .stars i.active {
            color: #ffd700;
        }
        footer {
            background-color: #1a5c48;
            padding: 40px 0 20px;
            border-top: 3px solid #ffd700;
            margin-top: 50px;
        }
        friend-link {
            display: block;
            margin-bottom: 30px;
        }
        friend-link a {
            display: inline-block;
            margin: 5px 15px;
            padding: 8px 15px;
            background-color: #0c3b2e;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        friend-link a:hover {
            background-color: #ffd700;
            color: #0c3b2e;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d7a5f;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a5c48;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .main-content {
                gap: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar, .comment-section, .rating-section {
            animation: fadeIn 0.8s ease-out;
        }
