        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f1e8;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #c46a1c;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #8a4a0f;
            text-decoration: underline;
        }
        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, #2c1a0a 0%, #5a3a1a 100%);
            color: #f0d8a8;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e9b456;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 2px;
            font-family: 'Times New Roman', serif;
        }
        .my-logo:hover {
            color: #ffd700;
        }
        .search-box {
            display: flex;
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            padding: 5px;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-box input {
            border: none;
            padding: 10px 15px;
            flex-grow: 1;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: #c46a1c;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 30px;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #8a4a0f;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0d8a8;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e6d5b8;
            padding: 10px 20px;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        .breadcrumb a {
            color: #7a5a2c;
        }
        nav {
            background-color: #3d2711;
            margin-top: 10px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-menu li {
            position: relative;
        }
        .nav-menu a {
            color: #f0d8a8;
            padding: 15px 20px;
            display: block;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        .nav-menu a:hover {
            background-color: #c46a1c;
            color: #fff;
            text-decoration: none;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #2c1a0a;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #e9b456;
            padding-bottom: 10px;
        }
        h2 {
            color: #5a3a1a;
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-top: 10px;
            border-top: 1px dashed #c46a1c;
        }
        h3 {
            color: #7a5a2c;
            font-size: 1.5rem;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            color: #8a6d3b;
            font-size: 1.2rem;
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c1a0a;
            background-color: #f9f3e6;
            padding: 15px;
            border-left: 5px solid #c46a1c;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #e9b456;
            margin: 20px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #8a4a0f;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-img img:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        aside {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #2c1a0a;
            border-bottom: 2px solid #e9b456;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 10px;
            padding: 10px;
            background: #f9f3e6;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .link-list li:hover {
            background: #f0d8a8;
        }
        .link-list a {
            display: block;
            color: #5a3a1a;
        }
        .interactive-section {
            margin-top: 40px;
            background: #f9f3e6;
            padding: 25px;
            border-radius: 10px;
        }
        .interactive-section h2 {
            border-top: none;
            color: #2c1a0a;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #5a3a1a;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #c46a1c;
            outline: none;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffc107;
        }
        .btn {
            background: #c46a1c;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: #8a4a0f;
            transform: translateY(-3px);
        }
        footer {
            background: #2c1a0a;
            color: #f0d8a8;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        friend-link a {
            color: #e9b456;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5a3a1a;
            font-size: 0.9rem;
            color: #b0a18c;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                text-align: center;
                margin-bottom: 15px;
            }
            .search-box {
                max-width: 100%;
                margin: 10px 0;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-menu {
                flex-direction: column;
                display: none;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 20px;
                border-bottom: 1px solid #5a3a1a;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
