        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #1a237e;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 6px solid #ff9800;
            padding-left: 15px;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid #ff9800;
            padding-bottom: 10px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #3949ab;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: #d84315;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
        }
        header {
            background: linear-gradient(90deg, #1a237e, #283593);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff9800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #ffc107;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 12px 20px;
            border-radius: 0 0 8px 8px;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #5c6bc0;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: #ff9800;
        }
        main {
            flex: 1;
            padding: 20px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ccc;
            color: #666;
            font-size: 0.95rem;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .featured-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-img img:hover {
            transform: scale(1.03);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .tip-card {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #2196f3;
        }
        .tip-card h4 {
            color: #1565c0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1a237e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: #ff9800;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #5c6bc0;
            box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.2);
        }
        button {
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            background: linear-gradient(to right, #ff5722, #ff9800);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 87, 34, 0.3);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: #f1f8e9;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #8bc34a;
        }
        .web-link a {
            color: #33691e;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ff9800;
            text-decoration: underline;
        }
        footer {
            background: #1a237e;
            color: #e8eaf6;
            margin-top: 50px;
        }
        .footer-top {
            padding: 40px 20px;
        }
        .footer-bottom {
            background: #0d153a;
            padding: 25px 20px;
            text-align: center;
            font-size: 0.95rem;
            border-top: 1px solid #3949ab;
        }
        .copyright {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #283593;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .featured-img img {
                height: 250px;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
