* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'PT Sans', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .purpleBg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        /* Header Navigation */
        .header {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .header-logo.visible {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        .header-logo img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #667eea;
        }

        .header-logo h3 {
            font-size: 1.2rem;
            color: #333;
            margin: 0;
        }

        .header .menu {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            gap: 2rem;
        }

        .header .menu a {
            text-decoration: none;
            color: #333;
            font-weight: 700;
            transition: color 0.3s;
        }

        .header .menu a:hover {
            color: #667eea;
        }

        .menu-btn {
            display: none;
        }

        .menu-icon {
            display: none;
        }

        /* Hero Section */
        #hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 4rem 2rem;
        }

        #hero img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 2rem;
            border: 4px solid white;
        }

        #hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        #hero h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        #hero p {
            font-size: 1.1rem;
            max-width: 600px;
            opacity: 0.9;
        }

        /* Work Section */
        #Work {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        #Work h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #667eea;
        }

        .webCards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .cardContainer {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cardContainer:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .thumbnail {
            display: block;
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .cardContainer:hover .thumbnail img {
            transform: scale(1.05);
        }

        .content {
            padding: 1.5rem;
        }

        .content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .content p {
            margin-bottom: 1rem;
            color: #666;
        }

        .content a {
            color: #667eea;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s;
        }

        .content a:hover {
            color: #764ba2;
        }

        /* Footer/Contact */
        footer {
            padding: 4rem 2rem;
        }

        #Contact {
            max-width: 600px;
            margin: 0 auto;
        }

        #Contact h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        label {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        input[type="text"],
        input[type="email"],
        textarea {
            padding: 0.75rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            font-family: 'PT Sans', sans-serif;
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: border-color 0.3s;
        }

        input[type="text"]::placeholder,
        input[type="email"]::placeholder,
        textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: white;
            background: rgba(255,255,255,0.2);
        }

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

        button {
            padding: 1rem 2rem;
            background: white;
            color: #667eea;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        button:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        button:active {
            transform: translateY(0);
        }

        /* Snackbar */
        #snack {
            min-width: 280px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 8px;
            padding: 1rem 2rem;
            position: fixed;
            z-index: 2000;
            left: 50%;
            bottom: -100px;
            transform: translateX(-50%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            opacity: 0;
            transition: all 0.4s ease-in-out;
        }

        #snack h2 {
            margin: 0;
            font-size: 1rem;
            font-weight: 400;
        }

        #snack.show {
            bottom: 30px;
            opacity: 1;
        }

        .hide-robot {
            position: absolute;
            left: -9999px;
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
                flex-wrap: wrap;
            }

            .header-logo {
                order: 1;
            }

            .header-logo h3 {
                font-size: 1rem;
            }

            .header-logo img {
                width: 32px;
                height: 32px;
            }

            .menu-icon {
                display: block;
                cursor: pointer;
                padding: 28px 20px;
                position: relative;
                user-select: none;
                order: 2;
                margin-left: auto;
            }

            .menu-icon .navicon {
                background: #333;
                display: block;
                height: 2px;
                position: relative;
                transition: background 0.2s ease-out;
                width: 24px;
            }

            .menu-icon .navicon:before,
            .menu-icon .navicon:after {
                background: #333;
                content: '';
                display: block;
                height: 100%;
                position: absolute;
                transition: all 0.2s ease-out;
                width: 100%;
            }

            .menu-icon .navicon:before {
                top: 8px;
            }

            .menu-icon .navicon:after {
                top: -8px;
            }

            .menu-btn:checked ~ .menu {
                max-height: 240px;
            }

            .menu-btn:checked ~ .menu-icon .navicon {
                background: transparent;
            }

            .menu-btn:checked ~ .menu-icon .navicon:before {
                transform: rotate(-45deg);
                top: 0;
            }

            .menu-btn:checked ~ .menu-icon .navicon:after {
                transform: rotate(45deg);
                top: 0;
            }

            .header .menu {
                clear: both;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.2s ease-out;
                flex-direction: column;
                gap: 0;
                width: 100%;
                order: 3;
            }

            .header .menu li {
                padding: 1rem;
                border-top: 1px solid #f4f4f4;
            }

            #hero h1 {
                font-size: 2rem;
            }

            #hero h2 {
                font-size: 1.2rem;
            }

            .webCards {
                grid-template-columns: 1fr;
            }
        }