        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background: #f4f4f4;
            color: #333;
        }

        header {
            background: linear-gradient(135deg, #e79e59, #a86596);
            text-align: center;
            padding: 40px 20px;
            color: white;
        }

        header h1 {
            font-family: 'Pacifico', cursive;
            font-size: 3em;
            margin: 0;
        }

        header p {
            font-size: 1.2em;
            margin-top: 10px;
        }

        header img {
            max-width: 150px;
            margin-top: 20px;
        }

        nav {
            background: #333;
            color: white;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 15px 10px;
            display: inline-block;
        }

        nav a:hover {
            background: #555;
            border-radius: 5px;
        }

        section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        section h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #a86596;
        }

        .projects {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .project-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .project-card:hover {
            transform: scale(1.05);
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }

        footer a {
            color: #e79e59;
            text-decoration: none;
        }