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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background: #1d1d20;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .profile-container {
            max-width: 1440px;
            width: 100%;
            background: #1a1a1a;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .header-image {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
            position: relative;
            overflow: hidden;
        }

        .header-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('./../images/moscow.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.6;
        }

        .city-skyline {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }

        .profile-content {
            position: relative;
            padding: 0 40px 40px;
            margin-top: -60px;
        }

        .profile-header {
            display: flex;
            align-items: flex-end;
            gap: 30px;
            margin-bottom: 30px;
        }

        .profile-pic-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        .profile-pic {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #1a1a1a;
            background: #2a2a2a;
            overflow: hidden;
            position: relative;
        }

        .badge {
            position: absolute;
            bottom: -5px;
            left: -5px;
            background: #10b981;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: bold;
            letter-spacing: 0.5px;
            border: 3px solid #1a1a1a;
            text-transform: uppercase;
        }

        .arrow-circle {
            width: 120px;
            height: 120px;
            background: #ef4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
            flex-shrink: 0;
        }

        .arrow-circle svg {
            width: 60px;
            height: 60px;
            fill: white;
            transform: rotate(-45deg);
        }

        .info-section {
            flex-grow: 1;
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ffffff;
        }

        h2 {
            margin-bottom: 0.5em;
            color: #00ffccff;
            text-transform: uppercase;
        }

        .description {
            font-size: 16px;
            line-height: 1.6;
            color: #b0b0b0;
            margin-bottom: 15px;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #808080;
            margin-bottom: 8px;
        }

        .contact-link {
            color: #3b82f6;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-link:hover {
            color: #60a5fa;
            text-decoration: underline;
        }

        .social-links {
            background: #252525;
            border-radius: 12px;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .social-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: #2a2a2a;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
            cursor: pointer;
        }

        .social-item:hover {
            transform: translateY(-2px);
            background: #333333;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #3a3a3a;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .social-icon.instagram {
            background: #3d3d3d;
            color: white;
        }

        .social-icon.telegram {
            background: #3d3d3d;
            color: white;
        }

        .social-icon.facebook {
            background: #3d3d3d;
            color: white;
        }

        .social-icon.linkedin {
            background: #3d3d3d;
            color: white;
        }

        .social-icon.business {
            background: #3d3d3d;
            color: white;
        }

        .social-icon.portafolio {
            background: #3d3d3d;
            color: white;
        }

        .social-name {
            font-size: 1em;
            color: #ffffff;
            font-weight: 500;
            margin-left: 1em;
        }
        .footer {
            display: block;
            text-align: center;
            padding: 12px 0 24px 0;
            color: #fff;
            font-size: 1.1em;
            background: transparent;
            width: 100%;
            margin-top: 2em;
        }

        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
    
            .arrow-circle {
                margin-left: 0;
                margin-top: 20px;
            }
    
            .social-links {
                grid-template-columns: repeat(2, 1fr);
            }
    
            .profile-content {
                padding: 0 20px 30px;
            }
    
            h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .social-links {
                grid-template-columns: 1fr;
            }
        }

/* .ubuntu-light {
font-family: "Ubuntu", sans-serif;
font-weight: 300;
font-style: normal;
}

.ubuntu-regular {
font-family: "Ubuntu", sans-serif;
font-weight: 400;
font-style: normal;
}

.ubuntu-medium {
font-family: "Ubuntu", sans-serif;
font-weight: 500;
font-style: normal;
}

.ubuntu-bold {
font-family: "Ubuntu", sans-serif;
font-weight: 700;
font-style: normal;
}

.ubuntu-light-italic {
font-family: "Ubuntu", sans-serif;
font-weight: 300;
font-style: italic;
}

.ubuntu-regular-italic {
font-family: "Ubuntu", sans-serif;
font-weight: 400;
font-style: italic;
}

.ubuntu-medium-italic {
font-family: "Ubuntu", sans-serif;
font-weight: 500;
font-style: italic;
}

.ubuntu-bold-italic {
font-family: "Ubuntu", sans-serif;
font-weight: 700;
font-style: italic;
} */