        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #009B3A;
            --dark-green: #00A67A;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --bg-white: #ffffff;
            --dot-red: #FF4444;
            --dot-blue: #4444FF;
            --dot-yellow: #FFD700;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--bg-white);
        }

        .decorative-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .dot {
            position: absolute;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -20px); }
        }

        .dot.small {
            width: 8px;
            height: 8px;
        }

        .dot.medium {
            width: 12px;
            height: 12px;
        }

        .dot.large {
            width: 16px;
            height: 16px;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 8%;
            position: relative;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .download-cv {
            padding: 0.9rem 2rem;
            border: 2px solid var(--primary-green);
            border-radius: 8px;
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .download-cv:hover {
            background: var(--primary-green);
            color: white;
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4rem 8%;
            min-height: calc(100vh - 100px);
            position: relative;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .welcome-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            border: 2px solid var(--primary-green);
            border-radius: 25px;
            color: var(--primary-green);
            font-weight: 500;
            margin-bottom: 1.5rem;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .creative-text {
            color: var(--primary-green);
        }

        .hero-description {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-primary {
            padding: 1.1rem 2.5rem;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.3);
        }

        .btn-secondary {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
        }

        .btn-secondary:hover {
            color: var(--primary-green);
        }

        .arrow {
            font-size: 1.2rem;
        }

        /* Hero Image */
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .image-container {
            position: relative;
            width: 450px;
            height: 550px;
        }

        .green-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 85%;
            height: 90%;
            background: var(--primary-green);
            border-radius: 8px;
            z-index: 1;
        }

        .photo-frame {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 85%;
            height: 90%;
            border: 4px solid var(--text-dark);
            border-radius: 8px;
            overflow: hidden;
            z-index: 2;
            background: white;
        }

        .photo-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Social Links */
        .social-links {
            position: fixed;
            right: 3%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 50;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--primary-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--dark-green);
            transform: translateX(-5px);
        }

        .follow-text {
            writing-mode: vertical-rl;
            color: var(--primary-green);
            font-weight: 500;
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            h1 {
                font-size: 3rem;
            }

            .hero {
                flex-direction: column;
                text-align: center;
                padding: 2rem 5%;
            }

            .hero-content {
                max-width: 100%;
            }

            .cta-buttons {
                justify-content: center;
            }

            .image-container {
                width: 350px;
                height: 450px;
                margin-top: 3rem;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .social-links {
                right: 2%;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            nav {
                flex-direction: column;
                gap: 1.5rem;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .image-container {
                width: 300px;
                height: 400px;
            }

            .social-links {
                position: static;
                flex-direction: row;
                justify-content: center;
                margin-top: 2rem;
                transform: none;
            }

            .follow-text {
                display: none;
            }
        }