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

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #f5d4d4 0%, #e8b4b4 100%);
            color: #5a3a3a;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        header {
            background: rgba(255, 255, 255, 0.9);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: center;
        }

        .profile-photo {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .header-content h1 {
            font-size: 3em;
            font-style: italic;
            color: #8b5a5a;
            margin-bottom: 10px;
        }

        .contact-info {
            margin: 20px 0;
        }

        .contact-info p {
            margin: 8px 0;
            font-size: 0.95em;
        }

        .contact-info a {
            color: #8b5a5a;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info a:hover {
            color: #5a3a3a;
        }

        .section {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .section h2 {
            font-size: 2.5em;
            color: #5a3a3a;
            margin-bottom: 25px;
            border-bottom: 3px solid #e8b4b4;
            padding-bottom: 10px;
        }

        .work-item, .education-item {
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(248, 235, 235, 0.5);
            border-radius: 10px;
        }

        .work-item h3 {
            color: #8b5a5a;
            margin-bottom: 8px;
        }

        .skills-grid {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-top: 20px;
        }

        .skill-icon {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid #5a3a3a;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            font-weight: bold;
            color: #8b5a5a;
        }

        .languages {
            margin-top: 30px;
        }

        .language-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 15px 0;
            padding: 10px 0;
            border-bottom: 1px solid #e8b4b4;
        }

        .language-name {
            font-size: 1.2em;
            font-weight: bold;
        }

        .language-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 20px;
            height: 20px;
            border: 2px solid #8b5a5a;
            border-radius: 50%;
        }

        .dot.filled {
            background: #8b5a5a;
        }

        @media (max-width: 768px) {
            header {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .header-content h1 {
                font-size: 2em;
            }

            .skills-grid {
                justify-content: center;
            }
        }
