.screenshot-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.screenshot {
    height: auto;
    border: 2px solid #007bff;
    border-radius: 4px;
}
.screenshot-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .screenshot {
        width: 100%;
    }
}