.work-page {
    padding: 80px 20px;
    background: #ffffff;
}

.work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.work-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.work-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease, box-shadow .2s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.work-card h3 {
    margin-bottom: 10px;
}

.work-card p {
    color: #444;
    margin-bottom: 15px;
}

.work-card ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.work-card ul li {
    margin-bottom: 6px;
    color: #333;
}

.work-card button {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}

.work-card button:hover {
    background: #333;
}
