        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #2a5c8b;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #d4a017;
        }
        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, #1e3c72, #2a5c8b);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Georgia', serif;
            font-size: 2.4rem;
            font-weight: bold;
            color: #f7d44c;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1.5px;
        }
        .logo a span {
            color: #fff;
        }
        .my-logo:hover {
            color: #fff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: rgba(255,255,255,0.15);
            color: #f7d44c;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: #e9e2d6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #777;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #2a5c8b;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #1e3c72;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #f7d44c;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #2a5c8b;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 0.5rem;
        }
        h3 {
            color: #3a6ea5;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
            background-color: #f0f7ff;
            padding: 1.5rem;
            border-left: 5px solid #2a5c8b;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px dashed #d4a017;
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: #b8860b;
        }
        em {
            color: #666;
            font-style: italic;
        }
        strong {
            color: #1e3c72;
            font-weight: 700;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f9f9f9;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        blockquote {
            border-left: 4px solid #d4a017;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #555;
            font-style: italic;
            background-color: #fcfaf6;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .tip {
            background-color: #e6f7ff;
            border-left: 5px solid #2a5c8b;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }
        .tip::before {
            content: "💡";
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        aside {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1e3c72;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 1.2rem;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #2a5c8b;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #1e3c72;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #eee;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            color: #333;
            display: flex;
            align-items: center;
        }
        .related-links a:hover {
            color: #2a5c8b;
        }
        .related-links i {
            margin-right: 0.8rem;
            color: #d4a017;
        }
        .interactive-section {
            background: linear-gradient(to right, #f8f5f0, #fff);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #e0d6c2;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f7d44c;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #2a5c8b;
            box-shadow: 0 0 0 3px rgba(42, 92, 139, 0.1);
        }
        button[type="submit"] {
            background-color: #2a5c8b;
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background-color: #1e3c72;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1a1a2e;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #f7d44c;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #f7d44c;
        }
        friend-link {
            display: block;
            background-color: #2a2a3e;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid #f7d44c;
        }
        friend-link a {
            color: #f7d44c;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.95rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #777;
            font-size: 0.95rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
                top: 1.5rem;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 0.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            aside {
                padding: 1.5rem;
                position: static;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.6s ease-out;
        }
