    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Basic Styling */
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    /* Header */
    header {
        background-color: #000000;
        color: #fff;
        padding: 1rem;
        text-align: center;
    }
    
    header h1 {
        margin-bottom: 0.5rem;
    }
    
    header nav ul {
        list-style: none;
    }
    
    header nav ul li {
        display: inline;
        margin: 0 1rem;
    }
    
    header nav ul li a {
        color: #fff;
        text-decoration: none;
    }
    
    header nav ul li a:hover {
        text-decoration: underline;
    }
    
    /* Main Content */
    main {
        flex: 1;
        padding: 2rem;
        background-color: #f5f5f5;
    }
    
    /* Blog Section */
    .blog {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .card {
        background-color: #41404073;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h2 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 0.5rem;
    }
    
    .card-content p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .read-more {
        display: inline-block;
        color: #0066cc;
        text-decoration: none;
        font-weight: bold;
        margin-top: 1rem;
    }
    
    .read-more:hover {
        text-decoration: underline;
    }
    
    /* About and Contact Pages */
    .about, .contact {
        max-width: 700px;
        margin: 0 auto;
        padding: 2rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        margin-bottom: 2rem;
    }
    
    .about h2, .contact h2 {
        color: #333;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about p, .contact p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Contact Form */
    .contact form {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .contact label {
        text-align: left;
        font-weight: bold;
        color: #333;
    }
    
    .contact input, .contact textarea {
        padding: 0.5rem;
        font-size: 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    
    .contact textarea {
        resize: vertical;
    }
    
    .contact button {
        background-color: #333;
        color: #fff;
        border: none;
        cursor: pointer;
        padding: 0.7rem;
        font-size: 1rem;
        border-radius: 5px;
        margin-top: 1rem;
        transition: background-color 0.2s ease;
    }
    
    .contact button:hover {
        background-color: #555;
    }
    
    /* Footer */
    footer {
        background-color: #000000;
        color: #fff;
        text-align: center;
        padding: 1rem;
    }
    
    /* Responsive Layout */
    @media (max-width: 768px) {
        .blog {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        header nav ul li {
            display: block;
            margin: 0.5rem 0;
        }
    }
    
    /* Basic Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
    }
    
    /* Hero Section */
    .hero-section {
        display: flex;
        gap: 1.5rem; /* Equivalent to gap-6 in Tailwind */
        align-items: center;
        padding: 2rem;
    }
    
    .content {
        flex: 1;
    }
    
    .content h1 {
        font-size: 3rem; /* Equivalent to text-5xl in Tailwind */
        font-weight: bold;
        line-height: 1.2;
    }
    
    .content p {
        font-size: 1.125rem; /* Equivalent to text-lg in Tailwind */
        color: #4B5563; /* Equivalent to text-gray-600 in Tailwind */
        margin-top: 0.5rem;
    }
    
    .content button {
        background-color: #111827; /* Equivalent to bg-gray-900 in Tailwind */
        color: #fff;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        margin-top: 1rem;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .content button:hover {
        background-color: #333;
    }
    
    .image {
        flex: 1;
    }
    
    .image img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    @media (max-width: 768px) {
        .hero-section {
            flex-direction: column;
            text-align: center;
            padding: 1.5rem;
        }
    }
    
    .gap{
        margin-top: 44px;
        margin-bottom: 44px;
    }
    