* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f4f6fb;
    color: #1e1e2f;
}

.page {
    padding: 60px 20px;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #e6ebf5;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.position {
    margin-top: 8px;
    font-size: 15px;
    color: #6b7280;
}

.contacts {
    text-align: right;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
}

.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3a8c;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.label {
    font-size: 13px;
    color: #9aa3b2;
}

.value {
    font-size: 15px;
    font-weight: 500;
}

.section-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.experience {
    font-size: 14px;
    color: #9aa3b2;
}

.job {
    margin-bottom: 35px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.job-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    background: #eef2ff;
    padding: 6px;
}

.job h3 {
    margin: 0;
    font-size: 18px;
}

.period {
    font-size: 14px;
    color: #9aa3b2;
}

.job strong {
    font-size: 14px;
    color: #2d3a8c;
}

ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #374151;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contacts {
        text-align: left;
        margin-top: 15px;
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }
}