* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
            padding: 20px;
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: #3d2817;
            border: 8px solid #5c3d2e;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .header {
            background: linear-gradient(to right, #5c3d2e 0%, #4a3124 100%);
            padding: 30px;
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 0;
            height: 0;
            border-left: 80px solid transparent;
            border-top: 90px solid #2c1810;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .profile-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #2c1810;
            object-fit: cover;
        }

        .header-text {
            flex: 1;
        }

        .title {
            background: #5c3d2e;
            color: #f5e6d3;
            font-size: 48px;
            font-weight: bold;
            padding: 10px 20px;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .greeting {
            color: #d4c4b0;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .name {
            color: #f5e6d3;
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .position {
            color: #d4c4b0;
            font-size: 18px;
            margin-top: 10px;
        }

        .contact-info {
            color: #d4c4b0;
            font-size: 14px;
            margin-top: 15px;
        }

        .contact-info div {
            margin: 5px 0;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 40px;
            background: #3d2817;
        }

        .section {
            margin-bottom: 30px;
        }

        .section-title {
            color: #f5e6d3;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #5c3d2e;
        }

        .about-text {
            color: #d4c4b0;
            font-size: 14px;
            line-height: 1.8;
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-name {
            color: #f5e6d3;
            font-size: 16px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .skill-icon {
            width: 50px;
            height: 50px;
            background: #2c1810;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #8b7355;
            font-weight: bold;
        }

        .skill-bar {
            height: 25px;
            background: #2c1810;
            border-radius: 4px;
            overflow: hidden;
            display: flex;
        }

        .skill-fill {
            background: #9fb857;
            transition: width 0.3s ease;
        }

        .skill-empty {
            background: #d4c4b0;
            flex: 1;
        }

        .language-item {
            margin-bottom: 15px;
        }

        .language-name {
            color: #f5e6d3;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .goals {
            color: #d4c4b0;
            font-size: 14px;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .main-content {
                grid-template-columns: 1fr;
            }

            .title {
                font-size: 36px;
            }

            .name {
                font-size: 32px;
            }
        }
   