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

body {
    font-family: Arial, sans-serif;
    display: flex;
    min-height: 100vh;
    background: #f5f5f5;
}

.left-panel {
    background: #3d3d3d;
    color: white;
    width: 280px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.photo-container {
    width: 100%;
    height: 380px;
    background: #b8b8b8;
    overflow: hidden;
}

.name-section {
    padding: 30px 25px 20px 25px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.job-title {
    font-size: 13px;
    font-weight: 300;
    margin-top: 15px;
    opacity: 0.95;
}

.contacts-section {
    padding: 0 25px 30px 25px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.interests-section {
    padding: 0 25px 30px 25px;
}

.interests {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}



.right-panel {
    background: #e8e8e8;
    flex: 1;
    padding: 50px 45px;
}

.right-section {
    margin-bottom: 35px;
}

.right-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 3px solid #000;
    padding-bottom: 8px;
    display: inline-block;
}

.right-section p {
    font-size: 13px;
    line-height: 1.7;
    color: #000;
    margin-top: 15px;
}

.education-content strong {
    font-weight: 700;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin-top: 30px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-circle {
    width: 90px;
    height: 90px;
    border: 3px solid #2b3b9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.skill-circle span {
    font-size: 32px;
    font-weight: 700;
    color: #2b3b9e;
}

.skill-line {
    width: 100%;
    height: 2px;
    background: #000;
}

@media (max-width: 968px) {
    body {
        flex-direction: column;
    }
    
    .left-panel {
        width: 100%;
    }
}