.rework-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 20px 200px;
}

.rework-header {
    text-align: center;
    margin-bottom: 80px;
}

.rework-header h1 {
    font-size: 4rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Onest', sans-serif;
    font-weight: bold;
}

.rework-tagline {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin: 0;
    font-family: 'Onest', sans-serif;
}

.rework-slideshow {
    position: relative;
    width: 60%;
    height: 0;
    padding-bottom: 33.75%;
    margin: 0 auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

.spacer-image {
    width: 60%;
    margin: 60px auto 0;
    opacity: 0;
    pointer-events: none;
}

.spacer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rework-download {
    text-align: center;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: inline-block;
    padding: 22px 55px;
    background: rgba(40, 40, 40, 0.95);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
}

.download-btn:hover {
    background: rgba(60, 60, 60, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .rework-slideshow {
        width: 80%;
        padding-bottom: 45%;
    }

    .spacer-image {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .rework-content {
        padding: 100px 15px 250px;
    }

    .rework-header {
        margin-bottom: 50px;
    }

    .rework-header h1 {
        font-size: 2.5rem;
    }

    .rework-tagline {
        font-size: 1.2rem;
    }

    .rework-slideshow {
        width: 90%;
        padding-bottom: 50.625%;
    }

    .spacer-image {
        width: 90%;
    }

    .rework-download {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 200px;
    }

    .download-btn {
        padding: 20px 50px;
        font-size: 1.15rem;
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .rework-content {
        padding: 80px 10px 300px;
    }

    .rework-header h1 {
        font-size: 2rem;
    }

    .rework-tagline {
        font-size: 1rem;
    }

    .rework-slideshow {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .spacer-image {
        width: 100%;
    }

    .rework-download {
        margin-bottom: 250px;
    }

    .download-btn {
        padding: 18px 45px;
        font-size: 1.05rem;
    }
}