/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4a90e2;
}

.title {
    text-transform: uppercase;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.intro-text {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 25px;
}

.highlight {
    color: #e74c3c;
    font-weight: bold;
}

.vacancy-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-box {
    background-color: #f1f8ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
}

.info-box strong {
    color: #2c3e50;
}

.contact-box {
    background-color: #e8f5e9;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    border-left: 4px solid #27ae60;
}

.contact-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.phone {
    font-size: 24px;
    color: #e74c3c;
    font-weight: bold;
    margin: 10px 0;
}

.contact-name {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 10px;
}

.work-hours {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.position-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.position-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.department {
    color: #666;
    font-size: 14px;
    text-align: left;
}

.rate {
    color: #27ae60;
    font-weight: bold;
    text-align: center;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 16px;
}

.filial-note {
    background-color: #fff8e1;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    border-left: 3px solid #ffb300;
}

.filial-address {
    font-weight: bold;
    color: #d84315;
}

.link-icon {
    color: #4a90e2;
    margin-left: 5px;
    font-size: 12px;
}

