        /* Reset and base styles */
        * {
            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-color: #f5f5f5;
        }

        /* Header styles */
        header {
            background-color: white;
            padding: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-title {
            font-size: 2rem;
            color: #2c3e50;
        }

        .search-bar {
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 300px;
        }

        .category-nav {
            margin-top: 1rem;
        }

        .category-nav ul {
            list-style: none;
            display: flex;
            gap: 1rem;
        }

        .category-nav a {
            text-decoration: none;
            color: #666;
            padding: 0.5rem;
        }

        /* Main content layout */
        .main-content {
            max-width: 1200px;
            margin: 2rem auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            padding: 0 1rem;
        }

        /* Blog post styles */
        .blog-posts {
            display: grid;
            gap: 2rem;
        }

        .post-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .post-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .post-content {
            padding: 1.5rem;
        }

        .post-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .post-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .post-excerpt {
            margin-bottom: 1rem;
        }

        .read-more {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #048f2e;
            color: white;
            text-decoration: none;
            border-radius: 4px;
        }

        /* Sidebar styles */
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .sidebar-widget {
            margin-bottom: 2rem;
        }

        .sidebar-widget h3 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .widget-list {
            list-style: none;
        }

        .widget-list li {
            margin-bottom: 0.5rem;
        }

        .newsletter-form input {
            width: 100%;
            padding: 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .newsletter-form button {
            width: 100%;
            padding: 0.5rem;
            background-color: #2ecc71;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        /* Footer styles */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 2rem 1rem;
            margin-top: 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
        }

        /* Responsive design */
        @media (max-width: 768px) {

            .hero {
                position: relative;
                height: 35vh;
                display: flex;
                align-items: center;
              }
              
            
            .main-content {
                grid-template-columns: 1fr;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .search-bar {
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }