.work-detail {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 30px;
}

.work-title {
    text-align: center;
    margin-bottom: 50px;
}

.work-image {
    text-align: center;
    margin-bottom: 50px;
}

.work-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.work-section {
    margin-bottom: 40px;
}

.work-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.work-section p {
    line-height: 2;
}

.work-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.work-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    background: #333;
    border-radius: 5px;
    transition: 0.3s;
}

.work-button:hover {
    opacity: 0.7;
}

.back-button {
    text-align: center;
    margin-top: 50px;
}

.back-button a {
    text-decoration: none;
    color: #333;
}

@media (max-width: 600px) {

    .work-detail {
        margin-top: 100px;
        padding: 0 20px;
    }

    .work-buttons {
        flex-direction: column;
        align-items: center;
    }

    .work-button {
        width: 200px;
        text-align: center;
    }
}