   /* Basic reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f8f8;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        h1, h2, h3, h4, h5 {
            margin-bottom: 15px;
            color: #333;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #e60000;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        a {
            text-decoration: none;
            color: #e60000;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        section {
            padding: 60px 0;
        }
        
        ul {
            list-style-type: none;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e60000;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #333;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover, .nav-links a.active {
            color: #e60000;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Blog Post Section */
        .blog-post-section {
            background-color: #fff;
            padding: 40px 0;
        }
        
        .blog-post-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .blog-post-header {
            padding-bottom: 30px;
        }
        
        .post-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .post-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .post-meta i {
            color: #e60000;
        }
        
        .blog-post-header h1 {
            padding: 0 20px;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .post-tags {
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            display: inline-block;
            background-color: #f0f0f0;
            color: #666;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: #e60000;
            color: white;
        }
        
        .blog-post-content {
            padding: 0 20px 40px;
        }
        
        .post-intro {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .post-section {
            margin-bottom: 40px;
        }
        
        .section-image {
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .section-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }
        
        .section-image:hover img {
            transform: scale(1.02);
        }
        
        .post-section p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }
        
        .key-features {
            background-color: #f8f8f8;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .key-features ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .key-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .key-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #e60000;
            position: absolute;
            left: 0;
        }
        
        .post-conclusion {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        /* Footer Styles */
        footer {
            background-color: #333;
            color: #fff;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h3 {
            color: #e60000;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .footer-logo p {
            color: #aaa;
        }
        
        .footer-links h4, .footer-contact h4, .footer-social h4 {
            color: #e60000;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #e60000;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #e60000;
        }
        
        .footer-contact p {
            color: #aaa;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #e60000;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: #aaa;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: #e60000;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: #fff;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.5s ease-in-out;
                z-index: 10;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .burger {
                display: block;
            }
            
            .blog-post-header h1 {
                font-size: 1.8rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .blog-post-header h1 {
                font-size: 1.5rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 10px;
            }
        }