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

        body {
            font-family: 'Segoe UI', sans-serif;
            color: #333;
            background: #fafafa;
            position: relative;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo span {
            color: #e91e63;
        }

        nav .nav-list {
            display: flex;
            gap: 1.5rem;
        }

        .nav-list li a {
            font-size: 1rem;
            padding: 0.5rem;
            transition: color .3s;
        }

        .nav-list li a:hover {
            color: #e91e63;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
        }

        /* Hero */
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            background: #fff;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            max-width: 600px;
            margin: 0 auto;
            color: #666;
        }

        /* Gallery Grid */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 0 1rem;
        }

        .work-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }

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

        .work-card .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity .3s;
        }

        .work-card:hover .overlay {
            opacity: 1;
        }

        .overlay span {
            color: #fff;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* About */
        .about {
            display: flex;
            gap: 2rem;
            align-items: center;
            max-width: 1000px;
            margin: 4rem auto;
            padding: 0 1rem;
        }

        .about .image {
            flex: 1;
        }

        .about .image img {
            width: 100%;
            border-radius: 8px;
        }

        .about .text {
            flex: 2;
        }

        .about .text h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .about .text p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Contact Form */
        .contact-form {
            background: #fff;
            max-width: 800px;
            margin: 4rem auto;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }

        .contact-form h2 {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .contact-form form {
            display: flex;
            gap: 20px;
            flex-direction: column;
            align-items: center;
        }

        .contact-form form .full {
            grid-column: 1/3;
        }

        .contact-form label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: #555;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            resize: vertical;
        }

        .contact-form textarea {
            min-height: 120px;
        }

        .contact-form button {
            grid-column: 2/3;
            justify-self: end;
            padding: 0.8rem 1.5rem;
            background: #e91e63;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background .3s;
        }

        .contact-form button:hover {
            background: #d81b60;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2rem 1rem;
            color: #777;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media(max-width:768px) {
            .nav-list {
                position: absolute;
                top: 100%;
                right: 0;
                background: #fff;
                flex-direction: column;
                width: 200px;
                transform: translateX(100%);
                transition: transform .3s;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }

            .nav-list.active {
                transform: translateX(0);
            }

            .hamburger {
                display: flex;
            }

            .about {
                flex-direction: column;
            }

            .about .text {
                order: 2;
            }

            #filter-icon {
                display: none !important;
            }

            .contact-form form {
                grid-template-columns: 1fr;
            }

            .contact-form button {
                grid-column: 1/2;
                justify-self: center;
                margin-top: 1rem;
            }
        }