body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #000000;
    background-color: #ffffff;
    margin: 0;
    padding: 20px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0 8px 0;
}

.subtitle {
    font-size: 17px;
    color: #333333;
    margin: 5px 0 15px 0;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 12px;
}

h3 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

a {
    color: #0000cc;
    text-decoration: underline;
}

a:hover {
    color: #000099;
}

p {
    margin: 12px 0;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

hr {
    border: 0;
    border-top: 1px solid #999999;
    margin: 35px 0;
}

footer {
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

/* Улучшенная читаемость для длинных текстов */
.career p {
    font-size: 16px;
    line-height: 1.7;
}

/* Адаптив под мобильные устройства */
@media (max-width: 600px) {
    body {
        padding: 15px;
        font-size: 15.5px;
    }
    
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
}