        * {
            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.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a5fb4;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e35d6a;
        }
        ul {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, #ffeaa7, #fab1a0);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .section-spacing {
            padding: 4rem 0;
        }
        .section-title {
            font-size: 2.2rem;
            color: #2d3436;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #6c5ce7, #e35d6a);
            border-radius: 2px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a5fb4 0%, #3584e4 100%);
            color: white;
            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;
            padding: 1rem 20px;
        }
        .logo a {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffeaa7;
        }
        .logo-text {
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #ffeaa7;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffeaa7;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e8f4fc;
            padding: 1rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d1e7f5;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            background: linear-gradient(rgba(26, 95, 180, 0.85), rgba(53, 132, 228, 0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #e35d6a, #ff9f43);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 6px 15px rgba(227, 93, 106, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(227, 93, 106, 0.5);
            color: white;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.4rem;
            color: #2d3436;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #6c5ce7;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #6c5ce7;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: #6c5ce7;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #5b4bd4;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-widget .stars i {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i.active,
        .rating-widget .stars i:hover {
            color: #ff9f43;
        }
        .rating-form input, .comment-form input,
        .rating-form textarea, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: #1a5fb4;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #154d8c;
        }
        .article-content h2 {
            font-size: 1.9rem;
            color: #2d3436;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a29bfe;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #4a4a4a;
            margin: 2.5rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.08rem;
        }
        .article-content ul, .article-content ol {
            margin: 1.5rem 0 1.5rem 2rem;
        }
        .article-content li {
            margin-bottom: 0.8rem;
        }
        .feature-img {
            margin: 2.5rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: #f8f9fa;
            color: #666;
            font-size: 0.95rem;
        }
        .tip-box {
            background: #e8f7ff;
            border-left: 5px solid #1a5fb4;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .interview-box {
            background: #fff9e6;
            border: 1px solid #ffeaa7;
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
        }
        .interview-box q {
            font-style: italic;
            color: #555;
            display: block;
            margin-bottom: 1rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .data-table th, .data-table td {
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: left;
        }
        .data-table th {
            background: #6c5ce7;
            color: white;
            font-weight: 600;
        }
        .data-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        .long-tail-links {
            background: #2d3436;
            padding: 3rem 20px;
            color: #ddd;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem;
        }
        .web-link a {
            color: #74b9ff;
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            background: rgba(255,255,255,0.05);
            transition: all 0.3s;
        }
        .web-link a:hover {
            background: rgba(255,255,255,0.1);
            color: #ffeaa7;
        }
        .site-footer {
            background: #1a1a1a;
            color: #aaa;
            text-align: center;
            padding: 2.5rem 20px;
            font-size: 0.95rem;
        }
        .site-footer a {
            color: #74b9ff;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: #1a5fb4;
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                gap: 0;
                transition: left 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .main-nav li {
                margin: 0.8rem 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .main-content {
                padding: 2rem 20px;
                gap: 2rem;
            }
            .web-link {
                display: block;
                margin: 0.8rem 0;
                text-align: center;
            }
        }
