
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        /* Header */
        
        /* Hero Section */
        .page-title-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-title-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
        }

        .page-title-section h1 {
            position: relative;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            z-index: 1;
        }

        .breadcrumbs {
            position: relative;
            color: rgba(255,255,255,0.9);
            z-index: 1;
        }

        .breadcrumbs a {
            color: white;
            text-decoration: none;
        }

        /* Main Content */
        .blog-container {
            max-width: 1200px;
            margin: 15px auto 50px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
        }

        /* Blog Post */
        .post {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .post-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .post-content {
            padding: 40px;
        }

        .post-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
            flex-wrap: wrap;
        }

        .post-meta li {
            list-style: none;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .post-meta i {
            margin-right: 5px;
            color: #007bff;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 14px 36px;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            animation: pulse 2s infinite;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(102, 126, 234, 0.8); }
        }

        .cta-widget {
            text-align: center;
            margin: 30px 0;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 10px;
        }

        /* Article Content */
        .post-article h2 {
            color: #1a1a2e;
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }

        .post-article h3 {
            color: #2d3436;
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }

        .post-article p {
            margin-bottom: 15px;
            color: #4a5568;
            font-size: 1.05rem;
        }

        .post-article ul, .post-article ol {
            margin: 20px 0 20px 30px;
            color: #4a5568;
        }

        .post-article li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .post-article strong {
            color: #2d3436;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
        }

        .faq-section h3 {
            text-align: center;
            margin-bottom: 30px;
            color: #1a1a2e;
        }

        .faq {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq:hover {
            background: #f8f9fa;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .faq-question {
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #2d3436;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #007bff;
            transition: transform 0.3s;
        }

        .faq.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            display: none;
            margin-top: 15px;
            color: #4a5568;
            line-height: 1.7;
        }

        .faq.active .faq-answer {
            display: block;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #007bff;
            color: #1a1a2e;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .recent-post img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }

        .recent-post-content h4 {
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .recent-post-content a {
            color: #2d3436;
            text-decoration: none;
            transition: color 0.3s;
        }

        .recent-post-content a:hover {
            color: #007bff;
        }

        .recent-post-date {
            font-size: 0.85rem;
            color: #6c757d;
        }

        /* Service Buttons */
        .service-btn {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 500;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }

        .service-btn i {
            margin-right: 12px;
            font-size: 20px;
        }

        /* Social Icons */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            color: #2d3436;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #007bff;
            color: white;
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 50px 20px 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: white;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .blog-container {
                grid-template-columns: 1fr;
            }

            .page-title-section h1 {
                font-size: 2rem;
            }

            .post-content {
                padding: 25px;
            }

            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
        }

        @media (max-width: 600px) {
            .page-title-section h1 {
                font-size: 1.5rem;
            }

            .post-img img {
                height: 250px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s;
        }
        
        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #667eea;
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        
        .skip-link:focus {
            top: 0;
        }
