        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Arial', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1.2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .underline { text-decoration: underline; }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 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-size: 2rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: #ffd600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ff6f00;
        }
        .logo span {
            color: #fff;
            font-size: 1.5rem;
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .desktop-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd600;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 0;
            font-size: 0.95rem;
            color: #555;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a:hover {
            color: #1a237e;
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd600;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #311b92;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            z-index: 999;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            padding: 1rem;
        }
        .mobile-nav li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a {
            display: block;
            padding: 1rem;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffd600;
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(49, 27, 146, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 0 0 12px 12px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.95;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        article h2, article h3, article h4 {
            color: #1a237e;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd600;
        }
        article h2 { font-size: 2.2rem; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.5rem; }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article blockquote {
            background-color: #f0f4ff;
            border-left: 5px solid #5c6bc0;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        article .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .featured-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .featured-image img {
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .widget h3 {
            color: #311b92;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #5c6bc0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: #5c6bc0;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #3949ab;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            outline: none;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-widget button, .comment-widget button {
            background-color: #ff9800;
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background-color: #f57c00;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars i.active {
            color: #ffd700;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            background-color: #e8eaf6;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: #ffd600;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-col li {
            margin-bottom: 0.8rem;
        }
        .footer-col a:hover {
            color: #ffd600;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            article { padding: 1.5rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
        }
