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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
    color: #2d2d4a;
    line-height: 1.6;
}

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

.header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px 0;
}

.header-content {
    max-width: 500px;
}

.emoji {
    font-size: 24px;
    margin-bottom: 10px;
}

.greeting {
    color: #7d7d9e;
    font-size: 16px;
    margin-bottom: 10px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2d2d4a;
}

h1 .highlight {
    color: #2d2d4a;
    font-weight: bold;
}

h1 .subtitle {
    font-weight: normal;
    color: #7d7d9e;
}

.description {
    font-size: 16px;
    color: #5d5d7d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    background: #4d4dff;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #3d3ddd;
}

.clients {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.4;
}

.clients img {
    height: 30px;
    filter: grayscale(100%);
}

.header-image {
    position: relative;
    text-align: center;
}

.profile-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.profile-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
}

.badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    color: #2d2d4a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.section {
    margin: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-label {
    color: #7d7d9e;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #2d2d4a;
    margin-bottom: 30px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.skill-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.skill-card h3 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7d7d9e;
    margin-bottom: 20px;
}

.skill-card p {
    color: #5d5d7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tech-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.tech-icon {
    width: 40px;
    height: 40px;
    background: #f5f1eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.cv-section {
    background: white;
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
}

.cv-intro {
    text-align: center;
    margin-bottom: 40px;
}

.experience-item {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.experience-item:last-child {
    border-bottom: none;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.job-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2d2d4a;
}

.job-details .company {
    color: #7d7d9e;
    font-size: 14px;
    margin-bottom: 10px;
}

.job-details .period {
    color: #9d9dbd;
    font-size: 13px;
}

.job-description {
    color: #5d5d7d;
    font-size: 14px;
    line-height: 1.7;
}

.job-description strong {
    color: #2d2d4a;
}

.faq-section {
    margin-top: 80px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d2d4a;
    font-size: 16px;
}

.faq-question:hover {
    background: #f9f9f9;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    margin: 60px auto;
}

.contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #e5e5e5;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-card .title {
    color: #7d7d9e;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info {
    text-align: left;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: #5d5d7d;
    font-size: 14px;
}

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

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-item {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .profile-circle {
        width: 300px;
        height: 300px;
    }

    .profile-img {
        width: 250px;
        height: 250px;
    }
}