        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2a6ebb;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        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, #1a2980 0%, #26d0ce 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffde59;
        }
        .logo i {
            color: #ffde59;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffde59;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: #1a2980;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a2980;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        article h2 {
            font-size: 2rem;
            color: #2a6ebb;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #26d0ce;
        }
        article h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.125rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fff9db;
            border-left: 5px solid #ffde59;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #d9480f;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #1a2980;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: 2px solid #26d0ce;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #26d0ce;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #1a9c9a;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars i {
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: #495057;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #26d0ce;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(to right, #1a2980, #26d0ce);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(38, 208, 206, 0.3);
        }
        .footer-links {
            background: #1a2980;
            padding: 40px 0;
            margin-top: 40px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ffde59;
            font-weight: 600;
            display: block;
        }
        footer {
            background: #0d1b4c;
            color: #adb5bd;
            text-align: center;
            padding: 30px 0;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: #1a2980;
                width: 100%;
                text-align: center;
                padding: 30px 0;
                gap: 25px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            nav ul.active {
                left: 0;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
        }
