        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #d32f2f; 
            --secondary: #2e7d32; 
            --accent: #ffab00; 
            --dark: #1a237e; 
            --light: #f5f5f5;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: var(--dark);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary), var(--dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        blockquote {
            border-left: 4px solid var(--accent);
            padding: 20px 30px;
            margin: 30px 0;
            background-color: rgba(255, 171, 0, 0.08);
            font-style: italic;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .highlight {
            background-color: rgba(255, 235, 59, 0.3);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }
        .logo:hover {
            text-decoration: none;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            color: var(--text);
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--primary);
            text-decoration: none;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: white;
            padding: 20px;
            box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px 10px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: rgba(26, 35, 126, 0.05);
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1598153346810-2dab6f8d8d79?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            color: white;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            font-size: 3.2rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 2px solid var(--light);
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: #ddd;
        }
        .rating-widget .stars .active {
            color: var(--accent);
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 0 auto;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-card .number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-card p {
            margin-bottom: 0;
            color: var(--text-light);
        }
        .interview {
            background-color: rgba(46, 125, 50, 0.05);
            padding: 30px;
            border-radius: var(--radius);
            margin: 40px 0;
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .interview-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
        }
        .interview-info h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }
        .interview-info p {
            color: var(--text-light);
            margin-bottom: 0;
            font-style: italic;
        }
        .internal-links {
            background-color: rgba(26, 35, 126, 0.03);
            padding: 40px 20px;
            margin: 60px 0 40px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 25px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: var(--radius);
            border: 1px solid #eee;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: var(--dark);
            color: white;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 60px 20px;
        }
        .footer-col h4 {
            color: white;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        .footer-col a {
            color: #ccc;
            display: block;
            margin-bottom: 12px;
        }
        .footer-col a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding: 25px 20px;
            background-color: rgba(0,0,0,0.2);
            color: #aaa;
            font-size: 0.95rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .hero { padding: 60px 20px; }
            .hero h1 { font-size: 2.5rem; }
            .header-container { padding: 15px; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-content, .widget { padding: 25px 20px; }
            .main-layout { gap: 30px; }
        }
