/* Корпоративный стиль */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Шапка */

header {
    background: #ffffff;
    color: #333;
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.subtitle {
    font-size: 0.95rem;
    color: #666;
}

/* Основной контент */

main {
    padding: 30px 30px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

/* Список проектов */

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.project-item:last-child {
    border-bottom: none;
}

.project-name {
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 5px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.project-name:hover {
    text-decoration: underline;
}

.project-description {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.project-fixes {
    margin-bottom: 8px;
}

.project-fixes h3 {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.project-fixes ul {
    list-style: none;
    padding-left: 0;
}

.project-fixes li {
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
    color: #666;
    font-size: 0.85rem;
}

.project-fixes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
}

.project-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Секция скачивания */

.downloads-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.downloads-section h2 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.downloads-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.file-item:last-child {
    border-bottom: none;
}

.file-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.file-name {
    font-weight: 500;
    color: #0066cc;
    font-size: 0.95rem;
}

.file-name:hover {
    text-decoration: underline;
}

.file-description {
    color: #999;
    font-size: 0.85rem;
}

/* Подвал */

footer {
    background: #ffffff;
    padding: 15px 30px;
    text-align: center;
    color: #666;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
    font-size: 0.9rem;
}
