        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f5f0;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #b8860b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2c1608 0%, #5d2906 100%);
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            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: 'Trebuchet MS', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #ffcc33, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a {
            background: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: #f0e6d2;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            color: #ffcc33;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc33;
        }
        .breadcrumb {
            background-color: #e9d8b6;
            padding: 10px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4af37;
        }
        .breadcrumb a {
            color: #5d2906;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8b4513;
        }
        .search-section {
            background-color: #fff8e1;
            padding: 25px 0;
            text-align: center;
            border-bottom: 2px dashed #d4af37;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #d4af37;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: linear-gradient(to bottom, #d4af37, #b8860b);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        main {
            padding: 40px 0;
            background-color: white;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #5d2906;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #8b4513;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 5px solid #ff9900;
        }
        h3 {
            font-size: 1.5rem;
            color: #a0522d;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 20px;
            border-left: 4px solid #ffcc33;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        strong {
            color: #8b4513;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            border: 3px solid #d4af37;
            border-radius: 10px;
            overflow: hidden;
            max-width: 800px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .image-container img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            padding: 10px;
            background-color: #f5f5dc;
            font-style: italic;
            color: #555;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-box, .rating-box {
            background-color: #f9f3e9;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #e0c48b;
        }
        .comment-box h3, .rating-box h3 {
            color: #5d2906;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        .comment-form input, .comment-form textarea, .rating-form select {
            padding: 12px;
            border: 1px solid #d4af37;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffcc33;
            margin: 10px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #8b4513, #5d2906);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.05rem;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #5d2906, #2c1608);
        }
        .footer-links {
            background-color: #2c1608;
            padding: 40px 20px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 20px;
            background-color: #5d2906;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #8b4513;
            transform: translateY(-3px);
        }
        .web-link a {
            color: #f0e6d2;
            font-weight: 600;
        }
        .links-container {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        footer {
            background-color: #1a0d04;
            color: #e0c48b;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 20px;
            border-top: 1px solid #5d2906;
            padding-top: 20px;
            color: #b8860b;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #5d2906;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                z-index: 999;
                border-top: 2px solid #d4af37;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .web-link {
                display: block;
                margin: 10px 0;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article {
            animation: fadeIn 0.8s ease-out;
        }
