        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a5276; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #2980b9; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; padding-top: 1.5rem; border-top: 2px solid #ecf0f1; margin-top: 2rem; }
        h3 { font-size: 1.8rem; color: #3498db; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.3rem; color: #5d6d7e; font-weight: 300; }
        strong { color: #21618c; }
        em { color: #7d3c98; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 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 a {
            font-family: 'Georgia', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span { color: #f1c40f; }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            color: #f1c40f;
            border-bottom-color: #f1c40f;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a5276;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin: 1rem 0; }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
        }
        .nav-mobile a:hover { background: #2e86c1; }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #7f8c8d;
        }
        .breadcrumb a { color: #2980b9; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-article {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #ecf0f1;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            padding: 0.5rem;
            background: #f8f9fa;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            font-size: 1.5rem;
            color: #1a5276;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f1c40f;
            margin-bottom: 1.5rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #2980b9;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-box button {
            background: #2980b9;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #1a5276; }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.2s;
        }
        .stars i.active, .stars i:hover { color: #f1c40f; }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 5px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background: #27ae60;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            width: 100%;
        }
        .rating-form button:hover, .comment-form button:hover { background: #219653; }
        .user-comment {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
            border-left: 4px solid #2980b9;
        }
        .comment-author { font-weight: bold; color: #2c3e50; }
        .comment-date { color: #7f8c8d; font-size: 0.9rem; }
        .web-links-section {
            background: #ecf0f1;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #2980b9;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { text-decoration: underline; }
        .site-footer {
            background: #1a5276;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo { font-size: 2rem; font-weight: bold; margin-bottom: 1rem; }
        .footer-links h4 { color: #f1c40f; margin-bottom: 1.2rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #bdc3c7; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: #f1c40f; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2e86c1;
            color: #bdc3c7;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            .main-article { padding: 1.5rem; }
            .web-links-container { grid-template-columns: 1fr; }
        }
