* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
        }
        a:hover {
            color: #e63946;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            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;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #06d6a0;
        }
        .logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.8rem;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            margin-bottom: 2rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1e3c72;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #888;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #06d6a0;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ffd166;
        }
        h3 {
            font-size: 1.6rem;
            color: #e63946;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #f4a261;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .highlight p {
            margin-bottom: 0.5rem;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 5px;
        }
        b, strong {
            color: #1e3c72;
        }
        .img-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
            transition: transform 0.5s;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            padding: 1.5rem;
            background-color: #f1faee;
            border-radius: 10px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ccc;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #2a5298;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #2a5298;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #e63946;
        }
        .comment-form, .rating-form {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a5298;
            box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #2a5298, #1e3c72);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn:hover {
            background: linear-gradient(to right, #e63946, #c1121f);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            max-width: 250px;
            margin: 0.5rem 0 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #1e3c72;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            background-color: #ffd166;
        }
        .web-link a {
            font-weight: 600;
            color: #1e3c72;
            display: block;
        }
        footer {
            background-color: #222;
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section ul li a {
            color: #aaa;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #06d6a0;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background-color: rgba(30, 60, 114, 0.98);
                padding: 1rem;
                border-radius: 8px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 0.5rem 0;
            }
            .hamburger {
                display: block;
            }
            .content-wrapper {
                gap: 1.5rem;
            }
            article {
                padding: 0;
            }
        }
