.main {
    flex: 1;
    margin: 80px auto;
    max-width: 1100px;
    width: calc(100% - 40px);
    background-color: white;
    padding: 60px 50px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Заголовок */
.work-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c2c2c;
    line-height: 1.4;
}

.work-image {
    display: flex;
    justify-content: center;
}

.work-image img {
    width: 100%;
    max-width: 700px; /* регулируешь размер тут */
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Текст */
.work-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Кнопка */
.work-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background-color: #466672;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease;
}

.work-btn:hover {
    background-color: #2c4e5b;
}

.work-subtitle {
    font-size: 26px;
    color: #2c2c2c;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Адаптив */
@media (max-width: 768px) {
    .main {
        padding: 40px 20px;
    }

    .work-title {
        font-size: 26px;
    }

    .work-content p {
        font-size: 17px;
    }
}