 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e8e4f3 0%, #d4d0e8 100%);
            min-height: 100vh;
            padding: 40px 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 60px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

    

    

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 30px;
            display: block;
            border: 5px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .intro {
            text-align: center;
            margin-bottom: 40px;
        }

        .greeting {
            font-size: 20px;
            color: #666;
            margin-bottom: 15px;
        }

        .name {
            font-size: 72px;
            font-weight: 900;
            color: #2d2d4d;
            letter-spacing: 2px;
            margin-bottom: 10px;
            line-height: 1;
        }

        .surname {
            font-size: 64px;
            font-weight: 700;
            color: #2d2d4d;
            letter-spacing: 8px;
            -webkit-text-stroke: 2px #2d2d4d;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
        }

        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        .tagline {
            font-size: 28px;
            color: #4a4a6a;
            margin-bottom: 15px;
        }

        .tagline .highlight {
            background: linear-gradient(90deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .description {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .skills-section {
            margin-bottom: 50px;
        }

        .skills-category {
            margin-bottom: 40px;
        }

        .skills-category-title {
            font-size: 20px;
            color: #4a4a6a;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .skills {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto;
        }

        .skill-item {
            background: white;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .skill-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .skill-icon {
            font-size: 24px;
        }

        .skill-name {
            color: #2d2d4d;
            font-size: 15px;
            font-weight: 600;
        }

        .learning-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 10px;
            margin-left: 5px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
        }

        .social-link {
            color: #4a4a6a;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .social-link:hover {
            color: #667eea;
        }

        .contact-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .section-title {
            font-size: 32px;
            color: #2d2d4d;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            color: #4a4a6a;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .success-message {
            background: #4caf50;
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            display: none;
        }

        .footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid rgba(102, 126, 234, 0.2);
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .footer-text {
            color: #4a4a6a;
            font-size: 15px;
        }

        .footer-heart {
            color: #e74c3c;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.2); }
            50% { transform: scale(1); }
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #764ba2;
        }

        .copyright {
            color: #999;
            font-size: 13px;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .name { font-size: 48px; }
            .surname { font-size: 42px; }
            .tagline { font-size: 22px; }
            .container { padding: 40px 20px; }
            .contact-section { padding: 30px 20px; }

        }
