:root {
            --primary-color: #0ea5e9;
            --primary-dark: #0369a1;
            --secondary-color: #6b7280;
            --light-color: #f8fafc;
            --dark-color: #1f2937;
            --gray-color: #6b7280;
            --light-gray: #f3f4f6;
            --border-color: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #f9fafb;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        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 0;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: inherit;
        }

        .logo-image {
            width: 90px;
            height: 90px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
        }

        .logo-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .logo-text-content p {
            font-size: 14px;
            color: var(--gray-color);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* Blog Hero */
        .blog-hero {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e1f5fe 100%);
        }

        .blog-hero-container {
            text-align: center;
        }

        .blog-category {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .blog-hero h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        /* Blog Content */
        .blog-content-section {
            padding: 40px 0 60px;
        }

        .main-blog-content {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .blog-featured-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .blog-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-intro {
            background-color: var(--light-gray);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid var(--primary-color);
            margin-bottom: 30px;
        }

        .blog-intro h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .blog-intro p {
            color: var(--dark-color);
            font-size: 17px;
            line-height: 1.7;
        }

        .blog-section {
            margin-bottom: 40px;
        }

        .blog-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }

        .blog-section p {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-size: 17px;
            line-height: 1.8;
        }

        .blog-section ul,
        .blog-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .blog-section li {
            color: var(--dark-color);
            margin-bottom: 10px;
            font-size: 17px;
            line-height: 1.7;
        }

        .blog-section strong {
            color: var(--primary-dark);
        }

        .highlight-box {
            background-color: rgba(14, 165, 233, 0.1);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid var(--primary-color);
        }

        .highlight-box h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-box h4 i {
            color: var(--primary-color);
        }

        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .blog-tag {
            background-color: var(--light-gray);
            color: var(--dark-color);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
        }

        /* Table Styling */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 16px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .comparison-table thead tr {
            background-color: var(--primary-color);
            color: white;
            text-align: left;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .comparison-table tbody tr:nth-of-type(even) {
            background-color: #f9fafb;
        }

        .check-mark {
            color: #10b981;
            font-weight: bold;
        }

        .cross-mark {
            color: #ef4444;
            font-weight: bold;
        }

        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }

        @media (max-width: 768px) {
            .pros-cons {
                grid-template-columns: 1fr;
            }
        }

        .pros-box, .cons-box {
            padding: 25px;
            border-radius: 12px;
        }

        .pros-box {
            background-color: rgba(16, 185, 129, 0.1);
            border-left: 5px solid #10b981;
        }

        .cons-box {
            background-color: rgba(239, 68, 68, 0.1);
            border-left: 5px solid #ef4444;
        }

        .pros-box h4, .cons-box h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Footer */
        footer {
            background: linear-gradient(to right, var(--secondary-color), var(--dark-color));
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-column p,
        .footer-column li {
            color: #d1d5db;
            margin-bottom: 10px;
        }

        .footer-column ul {
            list-style-type: none;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 18px;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: var(--shadow);
                padding: 20px;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .blog-hero h2 {
                font-size: 28px;
            }

            .blog-featured-image {
                height: 250px;
            }

            .main-blog-content {
                padding: 25px;
            }

            .blog-section h3 {
                font-size: 22px;
            }

            .logo-image {
                width: 70px;
                height: 70px;
            }

            .logo-text-content h1 {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .blog-hero h2 {
                font-size: 24px;
            }

            .blog-featured-image {
                height: 200px;
            }

            .logo-image {
                width: 60px;
                height: 60px;
            }

            .logo-text-content h1 {
                font-size: 20px;
            }
        }