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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #667eea 100%);
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 1s ease-out;
        }

        header h1 {
            font-size: 3.5rem;
            font-weight: 300;
            color: #2c3e50;
            letter-spacing: 3px;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        header h2 {
            font-size: 1.3rem;
            color: #5a6c7d;
            font-weight: 300;
            letter-spacing: 1px;
        }

        main {
            max-width: 800px;
            text-align: center;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 60px 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideInUp 1s ease-out 0.3s both;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        main img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 40px;
            border: 6px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            opacity: 0.8;
        }

        main img:hover {
            transform: scale(1.05);
        }

        /* Placeholder for missing image */
        main img::before {
            content: '📷';
        }

        .intro {
            font-size: 1.2rem;
            color: #2c3e50;
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .contact {
            margin-top: 40px;
        }

        .envelope {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            font-size: 1.1rem;
        }

        .envelope:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .envelope i {
            font-size: 1.2rem;
        }

        footer {
            margin-top: 40px;
            text-align: center;
            color: #5a6c7d;
            font-size: 0.9rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }

            header h2 {
                font-size: 1.1rem;
            }

            main {
                padding: 40px 20px;
            }

            main img {
                width: 250px;
                height: 250px;
            }

            .intro {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            main img {
                width: 200px;
                height: 200px;
                font-size: 3rem;
            }
        }
