        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a5276;
            --secondary: #e74c3c;
            --accent: #f39c12;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .text-center { text-align: center; }
        .text-primary { color: var(--primary); }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mt-4 { margin-top: 2rem; }
        .p-2 { padding: 1rem; }
        header {
            background-color: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a:hover {
            color: var(--accent);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.05);
            color: var(--accent);
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 15px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c0392b;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        main article {
            margin-bottom: 40px;
        }
        main h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        main h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        main p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        main .highlight-box {
            background-color: #e8f4fc;
            border-left: 5px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        main .highlight-box h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        main img.featured {
            width: 100%;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 30px 0;
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 30px 0;
            color: var(--dark);
            background-color: #fff9e6;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--primary);
        }
        aside {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            height: fit-content;
            box-shadow: var(--shadow);
        }
        aside h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: #f1c40f;
        }
        .footer-links {
            background-color: #2c3e50;
            padding: 50px 20px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ecf0f1;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: #bdc3c7;
            padding: 40px 20px;
            text-align: center;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .section { padding: 40px 0; }
            main h2 { font-size: 1.8rem; }
            main h3 { font-size: 1.4rem; }
            .hero { padding: 60px 20px; }
        }
