     /* Base styles and reset */
     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: "Syne Mono", monospace;
        line-height: 1.6;
        color: #333;
        background-color: #f8f8f8;
    }

    /* Accessibility - focus styles */
    a:focus, button:focus {
        outline: 3px solid #4b9fff;
        outline-offset: 2px;
    }

    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
    }

    /* Navigation */
    nav ul {
        display: flex;
        list-style: none;
    }

    nav li {
        margin-left: 30px;
    }

    nav a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    nav a:hover {
        color: #4b9fff;
    }

    .active {
        color: #4b9fff;
    }

    .mobile-menu-button {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Main content */
    main {
        padding: 60px 0;
    }

    section {
        margin-bottom: 80px;
    }

    h1, h2, h3 {
        margin-bottom: 20px;
        color: #222;
    }
    h1 {
        color: blue;
    }

    h1 {
        font-size: 36px;
        color: firebrick;
    }



    h2 {
        font-size: 30px;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
    }

    p {
        margin-bottom: 20px;
    }

    /* Work/Portfolio section */
    .work-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .work-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .work-item:hover {
        transform: translateY(-5px);
    }

    .work-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }








    
    .work-item-content {
        padding: 20px;
    }

    .work-item h3 {
        margin-bottom: 10px;
    }

    /* About section */
    .about-content {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .about-image {
        flex: 0 0 300px;
    }

    .about-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .about-text {
        flex: 1;
    }

    /* Contact section */
    .contact-form {
        max-width: 600px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: inherit;
        font-size: 16px;
    }

    textarea {
        min-height: 150px;
        resize: vertical;
    }

    button {
        background-color: #4b9fff;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    button:hover {
        background-color: #3a8de8;
    }

    /* Footer */
    footer {
        background-color: #333;
        color: white;
        padding: 40px 0;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .social-links {
        display: flex;
        gap: 20px;
    }

    .social-links a {
        color: white;
        text-decoration: none;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .header-content {
            position: relative;
        }

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

        nav ul {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            display: none;
        }

        nav ul.show {
            display: flex;
        }

        nav li {
            margin: 10px 0;
        }

        .about-content {
            flex-direction: column;
        }

        .about-image {
            flex: 0 0 100%;
            margin-bottom: 20px;
        }

        .footer-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }

    /* Skip to content link for accessibility */
    .skip-link {
        position: absolute;
        left: -9999px;
        z-index: 999;
        padding: 1em;
        background-color: white;
        color: #333;
        text-decoration: none;
    }

    .skip-link:focus {
        left: 0;
        top: 0;
    }
